Skip to content

Commit

Permalink
Merge branch 'main' into chore/add_raise_error_to_run_and_log
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Oct 21, 2024
2 parents 2001bc7 + 385d55c commit a64d8e6
Show file tree
Hide file tree
Showing 5 changed files with 510 additions and 501 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
file_glob: true

- name: Publish
uses: pypa/gh-action-pypi-publish@v1.9.0
uses: pypa/gh-action-pypi-publish@v1.10.2
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-json
- id: check-toml
Expand All @@ -18,14 +18,14 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
rev: v0.6.9
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
- id: ruff-format

- repo: https://github.com/pycqa/flake8
rev: 7.1.0
rev: 7.1.1
hooks:
- id: flake8
additional_dependencies:
Expand Down
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@
#
import os
import sys
from datetime import datetime

sys.path.insert(0, os.path.abspath(".."))

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "Meltano EDK"
copyright = "2022, Meltano Core Team and Contributors"
copyright = f"{datetime.now().year}, Arch Data, Inc and Contributors" # noqa: A001, DTZ005
author = "Meltano Core Team and Contributors"
release = "0.0.1"

Expand Down
Loading

0 comments on commit a64d8e6

Please sign in to comment.