Skip to content

Commit 16792c2

Browse files
committed
Fix PyPi publishing
1 parent 37c51c1 commit 16792c2

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2929
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3030
run: |
31-
python setup.py sdist bdist_wheel
31+
python setup.py sdist
3232
twine upload --verbose dist/*

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include requirements.txt
22
include README.md
3+
include HISTORY.rst
34
include LICENSE
45
include *.txt
56
recursive-include grim *.py

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ coverage: ## check code coverage quickly with the default Python
7979

8080
dist: clean ## builds source and wheel package
8181
python setup.py sdist
82-
python setup.py bdist_wheel
8382
ls -l dist
8483

8584
docker-build: ## build a docker image for the service

0 commit comments

Comments
 (0)