-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: some touchups & 3.12 classifier (#539)
Signed-off-by: Henry Schreiner <[email protected]>
- Loading branch information
Showing
3 changed files
with
17 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
authors = [{name = "Daniel Holth", email = "[email protected]"}] | ||
maintainers = [{name = "Alex Grönholm", email = "[email protected]"}] | ||
|
@@ -39,7 +40,7 @@ bdist_wheel = "wheel.bdist_wheel:bdist_wheel" | |
[project.optional-dependencies] | ||
test = [ | ||
"pytest >= 6.0.0", | ||
"setuptools >= 65" | ||
"setuptools >= 65", | ||
] | ||
|
||
[tool.flit.sdist] | ||
|
@@ -97,25 +98,27 @@ select = [ | |
"I", # isort | ||
"PGH", # pygrep-hooks | ||
"UP", # pyupgrade | ||
"B0", # flake8-bugbear | ||
"B", # flake8-bugbear | ||
] | ||
src = ["src"] | ||
|
||
# Tox (https://tox.wiki/) is a tool for running tests in multiple virtualenvs. | ||
# This configuration file will run the test suite on all supported python | ||
# versions. To use it, "pipx install tox" and then run "tox" from this | ||
# directory. | ||
|
||
[tool.tox] | ||
legacy_tox_ini = ''' | ||
# Tox (https://tox.wiki/) is a tool for running tests | ||
# in multiple virtualenvs. This configuration file will run the | ||
# test suite on all supported python versions. To use it, "pip install tox" | ||
# and then run "tox" from this directory. | ||
[tox] | ||
envlist = py37, py38, py39, py310, py311, pypy3, lint, pkg | ||
envlist = py37, py38, py39, py310, py311, py312, pypy3, lint, pkg | ||
minversion = 4.0.0 | ||
skip_missing_interpreters = true | ||
[testenv] | ||
package = wheel | ||
wheel_build_env = .pkg | ||
depends = lint | ||
commands = {envpython} -b -m pytest {posargs} | ||
commands = {env_python} -b -m pytest {posargs} | ||
extras = test | ||
set_env = | ||
PYTHONWARNDEFAULTENCODING = 1 | ||
|
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