-
Notifications
You must be signed in to change notification settings - Fork 895
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyproject.toml updates to HACKING.md (#1134)
Setup module is missing, use build instead. Run tests with tox.
- Loading branch information
1 parent
11b284e
commit 18f3459
Showing
4 changed files
with
66 additions
and
28 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.python-version eol=lf |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
3.7.9 | ||
3.8.10 | ||
3.9.13 | ||
3.10.11 | ||
3.11.5 |
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 |
---|---|---|
@@ -1,6 +1,19 @@ | ||
[tox] | ||
envlist=py37,py38,py39,py310 | ||
requires = | ||
tox<4 | ||
tox-pyenv | ||
tox-wheel | ||
envlist = py37,py38,py39,py310,py311 | ||
# tox-wheel alias for `wheel_pep517 = true` | ||
isolated_build = True | ||
distshare = ./dist | ||
|
||
[testenv] | ||
commands= | ||
python -m unittest discover -p '*_test.py' yapftests/ | ||
wheel = True | ||
wheel_build_env = bdist_wheel | ||
commands = python -m unittest discover -p '*_test.py' yapftests/ | ||
|
||
[testenv:bdist_wheel] | ||
|
||
[testenv:sdist] | ||
wheel = False |