Skip to content

Commit 77550d1

Browse files
committed
BUG: Build wheel in addition to sdist (wheel has version baked into metadata)
1 parent 3c0e954 commit 77550d1

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
DISCOVER_VERSION: ${{ steps.get_version.outputs.version }}
4141
run: |
4242
source ../venv/bin/activate
43-
python3 -m build . -s
43+
python3 -m build .
4444
4545
- name: Publish package
4646
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
This file lists all changes to the code
22

3-
v0.3.1 (29Dec25)
3+
v0.3.2 (29Dec25)
44
----------------
55

66
* BUG: Fixed CI workflow to use `DISCOVER_VERSION` environment variable when building
7+
* BUG: Build wheel in addition to sdist (wheel has version baked into metadata)
78

89
v0.3.0 (29Dec25)
910
----------------

test/test_version_discovery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from DiscoverVersion import __version__, get_version
3434

3535

36-
_current_version = "0.3.1"
36+
_current_version = "0.3.2"
3737

3838

3939
def test_version_discovery():

0 commit comments

Comments
 (0)