Skip to content

Commit e960e73

Browse files
authored
Feature logging (#6)
* logging, error handling, comments * bump version * missing build dependency * trigger build in PR and publish in master * version handling * missing dependency * use master * bump version * fix version * handle version during tag * bump to 0.4.0
1 parent ce790e4 commit e960e73

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/publish-to-pypi.yml

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ jobs:
6161
pip install setuptools wheel
6262
pip install -r requirements.txt
6363
64+
- name: Get current version
65+
id: get_version
66+
run: |
67+
VERSION=$(python -c "from version import __version__; print(__version__)")
68+
echo "VERSION=$VERSION" >> $GITHUB_ENV
69+
6470
- name: Build the package
6571
run: |
6672
python setup.py sdist bdist_wheel

version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# version.py
2-
__version__ = "0.3.0"
2+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)