Skip to content

Commit

Permalink
Update supported versions of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
mprpic committed Oct 11, 2024
1 parent 0a1c916 commit a4241fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
tox_env: ${{ matrix.tox_env }}
strategy:
matrix:
tox_env: [py38, py39, py310, py311, py312, black, ruff, mypy]
tox_env: [py39, py310, py311, py312, py313, black, ruff, mypy]
runs-on: ubuntu-latest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ line-length = 100
select = ["F", "E", "W", "I", "N"]

[tool.mypy]
python_version = "3.10"
python_version = "3.13"
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
include_package_data=True,
packages=find_namespace_packages(),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312}, black, ruff, mypy
envlist = py{39,310,311,312,313}, black, ruff, mypy

[testenv]
deps = pytest
Expand Down

0 comments on commit a4241fe

Please sign in to comment.