-
Notifications
You must be signed in to change notification settings - Fork 10
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.11 and 3.12, drop EOL 3.7 (#15)
* Bump GitHub Actions * Update pre-commit * Add noqa for: A004 import statement "format" is shadowing a Python builtin * Add support for Python 3.11 and 3.12 * Drop support for EOL Python 3.7 * Update .github/workflows/tests.yaml --------- Co-authored-by: Taneli Hukkinen <[email protected]>
- Loading branch information
Showing
6 changed files
with
27 additions
and
25 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
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,18 +10,19 @@ 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", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"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 :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
|
@@ -55,10 +56,10 @@ xfail_strict = true | |
legacy_tox_ini = ''' | ||
[tox] | ||
# Only run pytest envs when no args given to tox | ||
envlist = py{37,38,39,310} | ||
envlist = py{38,39,310,311,312} | ||
isolated_build = True | ||
[testenv:py{37,38,39,310}] | ||
[testenv:py{38,39,310,311,312}] | ||
description = run tests | ||
deps = -r tests/requirements.txt | ||
commands = | ||
|
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
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