Skip to content

Commit 0f26d5e

Browse files
authored
Merge pull request sigmavirus24#1038 from sigmavirus24/bugfix/remove-deprecated-setup-check
Remove setup.py check
2 parents f23e871 + aa6ba9b commit 0f26d5e

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- { VERSION: "3.6", TOXENV: "py36", ALLOW_FAILURE: false }
1313
- { VERSION: "3.7", TOXENV: "py37", ALLOW_FAILURE: false }
1414
- { VERSION: "3.8", TOXENV: "py38",ALLOW_FAILURE: false }
15-
- { VERSION: "3.9", TOXENV: "py39-flake8,readme,doclint,docs,commitlint",ALLOW_FAILURE: false }
15+
- { VERSION: "3.9", TOXENV: "py39-flake8,doclint,docs,commitlint",ALLOW_FAILURE: false }
1616
- { VERSION: "3.9", TOXENV: "docstrings", ALLOW_FAILURE: true}
1717
- { VERSION: "pypy3", TOXENV: "pypy", ALLOW_FAILURE: false }
1818

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
universal = 1
33

44
[metadata]
5+
long_description_content_type = text/x-rst
56
requires-dist=
67
requests>=2.0
78
uritemplate>=3.0.0

tox.ini

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ commands = flake8 {posargs} src/github3/ tests/unit/ tests/integration/
4141
usedevelop = false
4242
skipdist = true
4343
deps =
44-
twine >= 1.5.0
44+
twine >= 3.4.2
4545
wheel
4646
commands =
4747
python setup.py sdist bdist_wheel
@@ -69,17 +69,13 @@ commands =
6969

7070
[testenv:docs]
7171
deps =
72-
sphinx >= 1.3.0
72+
sphinx >= 4.2.0
7373
sphinx_rtd_theme
74+
twine >= 3.4.2
7475
.
7576
commands =
7677
sphinx-build -E -W -c docs/source/ -b html docs/source/ docs/build/html
77-
78-
[testenv:readme]
79-
deps =
80-
readme_renderer
81-
commands =
82-
python setup.py check -r -s
78+
twine check --strict {distdir}/*
8379

8480
[pytest]
8581
addopts = -q

0 commit comments

Comments
 (0)