Skip to content

Commit 2595cf6

Browse files
committed
migrate tox.ini into pyproject.toml
1 parent 06993da commit 2595cf6

File tree

3 files changed

+74
-60
lines changed

3 files changed

+74
-60
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ graft tests
55
prune docs/build
66
prune tests/http2-frame-test-case
77

8-
include README.rst LICENSE CHANGELOG.rst CONTRIBUTORS.rst pyproject.toml tox.ini .gitmodules
8+
include README.rst LICENSE CHANGELOG.rst CONTRIBUTORS.rst pyproject.toml .gitmodules
99

1010
global-exclude *.pyc *.pyo *.swo *.swp *.map *.yml *.DS_Store

pyproject.toml

+73-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "hyperframe"
10-
description = "HTTP/2 framing layer for Python"
10+
description = "Pure-Python HTTP/2 framing"
1111
readme = { file = "README.rst", content-type = "text/x-rst" }
1212
license = { file = "LICENSE" }
1313

@@ -46,6 +46,13 @@ classifiers = [
4646
"Documentation" = "https://python-hyper.org/"
4747

4848
[dependency-groups]
49+
dev = [
50+
{ include-group = "testing" },
51+
{ include-group = "linting" },
52+
{ include-group = "packaging" },
53+
{ include-group = "docs" },
54+
]
55+
4956
testing = [
5057
"pytest>=8.3.3,<9",
5158
"pytest-cov>=6.0.0,<7",
@@ -105,3 +112,68 @@ source = [
105112
"src/",
106113
".tox/**/site-packages/",
107114
]
115+
116+
[tool.tox]
117+
min_version = "4.23.2"
118+
env_list = [ "py39", "py310", "py311", "py312", "py313", "pypy3", "lint", "docs", "packaging" ]
119+
120+
[tool.tox.gh-actions]
121+
python = """
122+
3.9: py39, h2spec, lint, docs, packaging
123+
3.10: py310
124+
3.11: py311
125+
3.12: py312
126+
3.13: py313
127+
pypy3: pypy3
128+
"""
129+
130+
[tool.tox.env_run_base]
131+
pass_env = [
132+
"GITHUB_*",
133+
]
134+
dependency_groups = ["testing"]
135+
commands = [
136+
["pytest", "--cov-report=xml", "--cov-report=term", "--cov=hyperframe", { replace = "posargs", extend = true }]
137+
]
138+
139+
[tool.tox.env.pypy3]
140+
# temporarily disable coverage testing on PyPy due to performance problems
141+
commands = [
142+
["pytest", { replace = "posargs", extend = true }]
143+
]
144+
145+
[tool.tox.env.lint]
146+
dependency_groups = ["linting"]
147+
commands = [
148+
["ruff", "check", "src/"],
149+
["mypy", "src/"],
150+
]
151+
152+
[tool.tox.env.docs]
153+
dependency_groups = ["docs"]
154+
allowlist_externals = ["make"]
155+
changedir = "{toxinidir}/docs"
156+
commands = [
157+
["make", "clean"],
158+
["make", "html"],
159+
]
160+
161+
[tool.tox.env.packaging]
162+
base_python = ["python39"]
163+
dependency_groups = ["packaging"]
164+
allowlist_externals = ["rm"]
165+
commands = [
166+
["rm", "-rf", "dist/"],
167+
["check-manifest"],
168+
["python", "-m", "build", "--outdir", "dist/"],
169+
["twine", "check", "dist/*"],
170+
]
171+
172+
[tool.tox.env.publish]
173+
base_python = "{[tool.tox.env.packaging]base_python}"
174+
deps = "{[tool.tox.env.packaging]deps}"
175+
allowlist_externals = "{[tool.tox.env.packaging]allowlist_externals}"
176+
commands = [
177+
"{[testenv:packaging]commands}",
178+
["twine", "upload", "dist/*"],
179+
]

tox.ini

-58
This file was deleted.

0 commit comments

Comments
 (0)