Skip to content

Commit

Permalink
Support and test python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
MrThearMan committed Oct 10, 2024
1 parent a7b8c6f commit f313855
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
test:
uses: MrThearMan/CI/.github/workflows/test.yml@v0.4.12
with:
python-version: '["3.10", "3.11", "3.12"]'
python-version: '["3.10", "3.11", "3.12", "3.13"]'
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
Expand Down Expand Up @@ -248,7 +249,7 @@ banned-from = [
]

[tool.mypy]
python_version = "3.12"
python_version = "3.13"
warn_return_any = "True"
warn_unused_configs = "True"
ignore_missing_imports = "True"
Expand Down Expand Up @@ -283,14 +284,15 @@ addopts = "-vv -s --disable-warnings"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{310, 311, 312}-django{42, 50, 51}
envlist = py{310, 311, 312, 313}-django{42, 50, 51}
isolated_build = true
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
allowlist_externals =
Expand Down

0 comments on commit f313855

Please sign in to comment.