Skip to content

Commit

Permalink
Confirm support for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSuperiorStanislav committed Oct 30, 2024
1 parent e3506be commit 6e9467b
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 52 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: [
"3.10",
"3.11",
"3.12",
"3.13",
]
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
args: ["--lock"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.7.1
hooks:
- id: ruff
args: [ --fix ]
Expand All @@ -43,7 +43,7 @@ repos:
]

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.15.1
rev: v8.15.2
hooks:
- id: cspell

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ We follow [Semantic Versions](https://semver.org/).

- Add params for `system.chown`(`owner` and `path`)
- Add ability to set `dump_dir` for `K8SDBSettings`
- Confirm support for python 3.13

## 1.2.3

Expand Down
101 changes: 54 additions & 47 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ env_settings = ["python-decouple"]
[tool.poetry.group.dev.dependencies]
# Improved REPL
ipdb = "^0.13.13"
ipython = "^8.26.0"
ipython = "^8.29.0"
# A framework for managing and maintaining multi-language pre-commit hooks.
# https://pre-commit.com/
pre-commit = "^3.8.0"

[tool.poetry.group.linters.dependencies]
# Mypy is a static type checker for Python.
# https://mypy.readthedocs.io/en/stable/
mypy = "^1.11.1"
mypy = "^1.13.0"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 6e9467b

Please sign in to comment.