Skip to content

Commit 9944026

Browse files
update python versions (#207)
1 parent 3fb1461 commit 9944026

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
python: ['3.7', '3.8', '3.9', '3.10']
12+
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
1313
platform: [ubuntu-latest, macos-latest, windows-latest]
1414
runs-on: ${{ matrix.platform }}
1515
steps:

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ readme = "README.md" # Optional
3838
# 'Programming Language' classifiers above, 'pip install' will check this
3939
# and refuse to install the project if the version does not match. See
4040
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
41-
requires-python = ">=3.7"
41+
requires-python = ">=3.8"
4242

4343
# This is either text indicating the license for the distribution, or a file
4444
# that contains the license
@@ -88,11 +88,11 @@ classifiers = [ # Optional
8888
# that you indicate you support Python 3. These classifiers are *not*
8989
# checked by "pip install". See instead "python_requires" below.
9090
"Programming Language :: Python :: 3",
91-
"Programming Language :: Python :: 3.7",
9291
"Programming Language :: Python :: 3.8",
9392
"Programming Language :: Python :: 3.9",
9493
"Programming Language :: Python :: 3.10",
9594
"Programming Language :: Python :: 3.11",
95+
"Programming Language :: Python :: 3.12",
9696
"Programming Language :: Python :: 3 :: Only",
9797
]
9898

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# and also to help confirm pull requests to this project.
1212

1313
[tox]
14-
envlist = py{37,38,39,310}
14+
envlist = py{38,39,310,311,312}
1515

1616
# Define the minimal tox version required to run;
1717
# if the host tox is less than this the tool with create an environment and

0 commit comments

Comments
 (0)