diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a81d4ce..9bd2a85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] fail-fast: false runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index 03437b0..930cce6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,18 +7,18 @@ name = "my_package" version = "0.0.1" description = 'My package description' readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" license = "MIT" keywords = ["mykeywords"] authors = [{ name = "My Name", email = "my.email@test.com" }] classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python", - "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", "Environment :: Console", "License :: OSI Approved :: MIT License", ]