diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6e1532e..44907191 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,10 +51,10 @@ jobs: name: Test strategy: matrix: - pyver: ['3.9', '3.10', '3.11'] + pyver: ['3.10', '3.11'] os: [ubuntu, macos, windows] include: - - pyver: pypy-3.9 + - pyver: pypy-3.10 os: ubuntu runs-on: ${{ matrix.os }}-latest timeout-minutes: 15 diff --git a/setup.cfg b/setup.cfg index 4703cdc6..0f7911bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,4 +11,4 @@ max-line-length = 120 max-complexity = 10 [bdist_wheel] -python_tag = py39.py310.py311.py312.py313 +python_tag = py310.py311.py312.py313 diff --git a/setup.py b/setup.py index 9bd329dd..3a65d4dd 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,6 @@ 'Environment :: Console', '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", @@ -70,5 +69,5 @@ 'Pygments>=2.2.0', "watchfiles>=0.10" ], - python_requires=">=3.9", + python_requires=">=3.10", )