Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh package metadata with jaraco/skeleton #4430

Merged
merged 8 commits into from
Jul 1, 2024
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ python:
install:
- path: .
extra_requirements:
- docs
- doc

# required boilerplate readthedocs/readthedocs.org#10401
build:
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ requires-python = ">=3.8"
dependencies = []

[project.urls]
Homepage = "https://github.com/pypa/setuptools"
Source = "https://github.com/pypa/setuptools"
Documentation = "https://setuptools.pypa.io/"
Changelog = "https://setuptools.pypa.io/en/stable/history.html"

[project.optional-dependencies]
testing = [
test = [
# upstream
"pytest >= 6, != 8.1.1",
"pytest >= 6, != 8.1.*",
"pytest-checkdocs >= 2.4",
'pytest-cov; python_implementation != "PyPy"', # coverage seems to make PyPy extremely slow
"pytest-cov",
"pytest-mypy",
"pytest-enabler >= 2.2",
# workaround for pypa/setuptools#3921
Expand Down Expand Up @@ -71,7 +71,7 @@ testing = [

"jaraco.test",
]
docs = [
doc = [
# upstream
"sphinx >= 3.5",
"jaraco.packaging >= 9.3",
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ commands =
pytest {posargs}
usedevelop = True
extras =
testing
test
pass_env =
SETUPTOOLS_USE_DISTUTILS
SETUPTOOLS_ENFORCE_DEPRECATION
Expand Down Expand Up @@ -46,8 +46,8 @@ commands =
[testenv:docs]
description = build the documentation
extras =
docs
testing
doc
test
changedir = docs
deps =
importlib_resources < 6 # twisted/towncrier#528 (waiting for release)
Expand Down
Loading