Skip to content

Commit 214b032

Browse files
committed
development
1 parent dab6897 commit 214b032

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/publish2pypi.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,15 @@ jobs:
2626
- name: Install pypa/build
2727
run: python -m pip install --upgrade build twine
2828

29-
- name: Set version from tag
30-
run: |
31-
echo "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
29+
# - name: Set version from tag
30+
# run: |
31+
# echo "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
3232

3333

3434
- name: Build a binary wheel and a source tarball
35-
run: python -m build
35+
run: |
36+
echo "${{ github.ref_name }}"
37+
SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.ref_name }} python -m build
3638
env:
3739
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.ref_name }}
3840

cmipld/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
__version_tuple__: VERSION_TUPLE
1818
version_tuple: VERSION_TUPLE
1919

20-
__version__ = version = '0.0.3.dev0+g97d9735.d20250320'
21-
__version_tuple__ = version_tuple = (0, 0, 3, 'dev0', 'g97d9735.d20250320')
20+
__version__ = version = 'v1.0.0'
21+
__version_tuple__ = version_tuple = (1, 0, 0)

0 commit comments

Comments
 (0)