Skip to content

Commit

Permalink
test number many
Browse files Browse the repository at this point in the history
  • Loading branch information
jackvreeken committed Jan 28, 2025
1 parent 2d3c154 commit d7f851a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/rtc-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ jobs:

- name: Check tags are present
run: |
git fetch --tags
git tag -l | grep ${{ github.ref_name }}
- name: Git describe
Expand All @@ -125,6 +124,18 @@ jobs:
python -m pip install --upgrade pip
pip install build setuptools wheel
- name: python version
run: |
python setup.py version
- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow

- name: python version
run: |
python setup.py version
- name: Build package
run: python -m build

Expand Down
3 changes: 3 additions & 0 deletions src/rtctools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@

__version__ = get_versions()["version"]
del get_versions

from . import _version
__version__ = _version.get_versions()['version']

0 comments on commit d7f851a

Please sign in to comment.