From a4241fe14a73ec34c64fda6434f6baa022792634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Prpi=C4=8D?= Date: Fri, 11 Oct 2024 11:12:20 -0400 Subject: [PATCH] Update supported versions of Python --- .github/workflows/main.yml | 2 +- pyproject.toml | 2 +- setup.py | 4 ++-- tox.ini | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e45be03..e0b6361 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 2dc1450..9973891 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 diff --git a/setup.py b/setup.py index f2629b2..64f6279 100644 --- a/setup.py +++ b/setup.py @@ -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(), diff --git a/tox.ini b/tox.ini index cae4dee..b1448b5 100644 --- a/tox.ini +++ b/tox.ini @@ -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