diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 946e1c91..e0cad23b 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -35,7 +35,7 @@ jobs: fail-fast: false # Don't cancel other jobs if one fails matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 - name: Set up Hatch diff --git a/pyproject.toml b/pyproject.toml index b2c772b6..a6bebe02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Topic :: Security", @@ -62,7 +63,7 @@ parallel = true randomize = true [[tool.hatch.envs.hatch-test.matrix]] -python = ["3.10", "3.11", "3.12"] +python = ["3.10", "3.11", "3.12", "3.13"] [tool.hatch.envs.bench] description = """Custom environment for running benchmarks. @@ -74,7 +75,7 @@ extra-dependencies = [ ] [[tool.hatch.envs.bench.matrix]] -python = ["3.10", "3.11", "3.12"] +python = ["3.10", "3.11", "3.12", "3.13"] [tool.hatch.envs.bench.scripts] generate = "python benchmarks/generate.py {args}"