We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2db62a4 commit b152cefCopy full SHA for b152cef
.github/workflows/build.yaml
@@ -45,7 +45,7 @@ jobs:
45
- name: publish to pypi
46
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
47
run: |
48
- python3 -m twine upload dist/*
+ python3 -m twine upload dist/*.tar.gz dist/*.whl
49
env:
50
TWINE_USERNAME: __token__
51
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
moptipy/version.py
@@ -1,4 +1,4 @@
1
"""An internal file with the version of the moptipy package."""
2
from typing import Final
3
4
-__version__: Final[str] = "0.9.3"
+__version__: Final[str] = "0.9.4"
0 commit comments