Skip to content

Commit b152cef

Browse files
committed
hopefully fixed pipy dist error
1 parent 2db62a4 commit b152cef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: publish to pypi
4646
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
4747
run: |
48-
python3 -m twine upload dist/*
48+
python3 -m twine upload dist/*.tar.gz dist/*.whl
4949
env:
5050
TWINE_USERNAME: __token__
5151
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}

moptipy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""An internal file with the version of the moptipy package."""
22
from typing import Final
33

4-
__version__: Final[str] = "0.9.3"
4+
__version__: Final[str] = "0.9.4"

0 commit comments

Comments
 (0)