We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d962a commit 6bfde85Copy full SHA for 6bfde85
Makefile
@@ -1,7 +1,5 @@
1
.PHONY: publish
2
3
publish:
4
- rm -rf dist/
5
- pip3 install -U twine wheel pip setuptools
6
- python3 setup.py sdist bdist_wheel
+ tox -e packaging
7
twine upload -s dist/*
setup.py
@@ -22,11 +22,6 @@
22
else:
23
raise RuntimeError("No version number found!")
24
25
-# Stealing this from Kenneth Reitz
26
-if sys.argv[-1] == 'publish':
27
- os.system('python setup.py sdist upload')
28
- sys.exit()
29
-
30
setup(
31
name='h2',
32
version=version,
tox.ini
@@ -12,7 +12,7 @@ python =
12
passenv =
13
GITHUB_*
14
deps =
15
- pytest==6.0.1
+ pytest==6.0.2
16
pytest-cov==2.10.1
17
pytest-xdist==2.1.0
18
hypothesis>=5.5,<6
0 commit comments