diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8173fee..5c868eb 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index b489446..d84cc51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,5 @@ [tool.black] line-length = 79 -target-version = ['py37', 'py38', 'py39'] [tool.isort] profile = "black" diff --git a/setup.py b/setup.py index 3169b2c..c9cb683 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ long_description_content_type="text/markdown", author="Daniel Townsend", author_email="dan@dantownsend.co.uk", - python_requires=">=3.9.0", + python_requires=">=3.10.0", url="https://github.com/piccolo-orm/targ/", packages=["targ"], include_package_data=True, @@ -40,11 +40,11 @@ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "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", "Programming Language :: Python :: Implementation :: CPython", ], )