Skip to content

Commit

Permalink
Add Python 3.12, remove Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
utapyngo committed Dec 12, 2023
1 parent 9c81ba9 commit 1fe6755
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
- "pypy3.9"
pytest-version:
- "pytest<7"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ def read(fname: str) -> str:
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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 :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py37,py38,py39,py310,py311,pypy3}-{pytestlatest,pytestmain},black,flake8,mypy
envlist = {py38,py39,py310,py311,py312,pypy3}-{pytestlatest,pytestmain},black,flake8,mypy

[testenv]
commands =
Expand Down

0 comments on commit 1fe6755

Please sign in to comment.