Skip to content

Commit

Permalink
drop 3.8, support 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jan 13, 2025
1 parent a3be649 commit 231cafc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ Testing
Test cases are in ``test/test_autopep8.py``. They can be run directly via
``python test/test_autopep8.py`` or via tox_. The latter is useful for
testing against multiple Python interpreters. (We currently test against
CPython versions 3.8, 3.9, 3.10, 3.11 and 3.12. We also test against PyPy.)
CPython versions 3.9, 3.10, 3.11, 3.12 and 3.13. We also test against PyPy.)

.. _`tox`: https://pypi.org/project/tox/

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"pycodestyle >= 2.12.0",
"tomli; python_version < '3.11'",
Expand Down

0 comments on commit 231cafc

Please sign in to comment.