diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e8cc34..d8c512b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,7 @@ jobs: strategy: matrix: python-version: - - "pypy-3.9" - - "pypy-3.10" - "pypy-3.11" - - "3.9" - "3.10" - "3.11" - "3.12" diff --git a/pyproject.toml b/pyproject.toml index fde40e1..dbd68cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -34,7 +33,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", "Typing :: Typed" ] -requires-python = ">=3.9" +requires-python = ">=3.10" [project.optional-dependencies] md = ["cmarkgfm>=0.8.0"] diff --git a/tox.ini b/tox.ini index 98035e8..69c6839 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = - py{39, 310, 311, 312, 313, 314} - pypy{39, 310, 311} + py{310, 311, 312, 313, 314} + pypy{311} pep8 packaging noextra