diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 07799a4..d5daefd 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -39,7 +39,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 3a2e0e1..ea95678 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Install pre-commit hook: Test: make test # for current environment - make tox # for Python 3.9 and Python 3.10 + make tox # for Python 3.10, Python 3.11, Python 3.12 Build: diff --git a/pyproject.toml b/pyproject.toml index 5e5a5d7..3b0f088 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,12 +6,12 @@ authors = [ description = "Example Package" readme = "README.md" license = { file="LICENSE.txt" } -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/tox.ini b/tox.ini index cadfce0..4362b3e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,9 @@ [tox] -envlist = py39,py310 +envlist = py310,py311,py312 isolated_build = True [gh] python = - 3.9 = py39, type - 3.10 = py310 + 3.10 = py310 + 3.11 = py311 + 3.12 = py312