diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 20573e8..23962ac 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 5a4854f..5988cc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,16 +19,16 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "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", + "Programming Language :: Python :: 3.14", "Topic :: Software Development :: Libraries :: Python Modules", ] -requires-python = ">=3.7" +requires-python = ">=3.8" [project.optional-dependencies] dev = [ @@ -55,7 +55,7 @@ filterwarnings = ["ignore::DeprecationWarning"] [tool.tox] legacy_tox_ini = """ [tox] -env_list = py{313,312,311,310,39,38,37} +env_list = py{314,313,312,311,310,39,38} [testenv] deps = pytest