We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 175e3d3 commit 3d1539fCopy full SHA for 3d1539f
2 files changed
.github/workflows/build-and-publish.yml
@@ -24,7 +24,7 @@ jobs:
24
pip install build
25
- name: Get version
26
run: |
27
- cat setup.cfg | grep "version = " | awk '{print "VERSION="$(NF)}' >> $GITHUB_ENV
+ cat src/polygongrid/_version.py | awk '{print $(NF)}' >> $GITHUB_ENV
28
- name: Build a binary wheel and a source tarball 🚧
29
run: python -m build --sdist --wheel --outdir dist/ .
30
- name: Validate release tag
src/polygongrid/_version.py
@@ -1 +1 @@
1
-__version__ = "0.1.0"
+__version__ = "0.1.0a1"
0 commit comments