Skip to content

Commit 11fb328

Browse files
committed
Update publish action
1 parent fc297fc commit 11fb328

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pip install build flit
3333
sed -i -e '0,/name = "pyqode-core"/{s/name = "pyqode-core"/name = "pyqode.core"/}' pyproject.toml
3434
flit build --format=wheel
35-
mv dist/pyqode_core-* dist/pyqode.core-*
35+
for file in dist/pyqode_core-*; do mv "$file" "${file//_core/.core}"; done
3636
- name: Build package
3737
run: python -m build
3838
- name: Publish package

pyqode/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import logging
1111

1212

13-
__version__ = '4.0.4'
13+
__version__ = '4.0.5'
1414

1515

1616
logging.addLevelName(1, "PYQODEDEBUGCOMM")

0 commit comments

Comments
 (0)