Skip to content

Commit

Permalink
chore(poetry): bump dependencies + Python to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
haidarCheaito authored and mergealot committed Oct 24, 2023
1 parent 14c277e commit acf9075
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 256 deletions.
253 changes: 23 additions & 230 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 2 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,17 @@ description = ""
authors = ["Marcel Arns <marcel.arns@moneymeets.com>"]

[tool.poetry.dependencies]
python = "^3.11"
python = "~3.12"

dataclasses-json = "*"
pyyaml = "*"

[tool.poetry.dev-dependencies]
add-trailing-comma = "*"
black = "*"
flake8 = "*"
flake8-black = "*"
flake8-isort = "*"
flake8-quotes = "*"
flake8-coding = "*"
isort = { extras = ["pyproject"], version = "*" }
ruff = "*"

pytest = "*"
pytest-cov = "*"

[tool.black]
line-length = 120
target-version = ["py311"]

[tool.isort]
profile = "black"
line_length = 120

[tool.coverage.run]
branch = true
source = ["."]
Expand Down
2 changes: 1 addition & 1 deletion s3_artifact/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def main():
case _:
raise NotImplementedError(f"Unknown command - {cmd}")

_run_commands(commands, os.environ.get("DRY_RUN", "false").lower() in ('y', 'yes', 't', 'true', 'on', '1'))
_run_commands(commands, os.environ.get("DRY_RUN", "false").lower() in ("y", "yes", "t", "true", "on", "1"))


if __name__ == "__main__":
Expand Down
8 changes: 0 additions & 8 deletions setup.cfg

This file was deleted.

0 comments on commit acf9075

Please sign in to comment.