-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Python 3.12, drop EOL 3.7 (#224)
* Bump GitHub Actions * Add support for Python 3.12, drop EOL 3.7 * Update .github/workflows/tests.yaml --------- Co-authored-by: Taneli Hukkinen <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ authors = [ | |
{ name = "Taneli Hukkinen", email = "[email protected]" }, | ||
] | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
readme = "README.md" | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -47,10 +47,10 @@ profile = "black" | |
legacy_tox_ini = ''' | ||
[tox] | ||
# Only run unittest envs when no args given to tox | ||
envlist = py{37,38,39,310,311} | ||
envlist = py{38,39,310,311,312} | ||
isolated_build = True | ||
[testenv:py{37,38,39,310,311}] | ||
[testenv:py{38,39,310,311,312}] | ||
description = run tests against a built package | ||
commands = | ||
python -m unittest {posargs} | ||
|