Skip to content

Commit bac3984

Browse files
minor changes
1 parent e7304ab commit bac3984

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2929
TWINE_PASSWORD: ${{ secrets.PASSWORD }}
3030
run: |
31-
python -m build
31+
python setup.py sdist bdist_wheel
3232
twine upload -r testpypi dist/*
3333
twine check dist/*
3434
twine upload dist/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
packages=find_packages(exclude=("tests",)),
2020
extras_require={
21-
"dev": ["flake8", "black==22.3.0", "isort", "twine", "pytest"],
21+
"dev": ["flake8", "black==22.3.0", "isort", "twine", "pytest", "wheel"],
2222
},
2323
classifiers=[
2424
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)