We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ce66e commit c4e91c6Copy full SHA for c4e91c6
.github/workflows/ci.yml
@@ -81,7 +81,7 @@ jobs:
81
with:
82
python-version: "3.x"
83
- run: python -m pip install setuptools_scm
84
- - run: python -c "from setuptools_scm import get_version; print(get_version()); open('histomicstk/_version.py', 'w').write(f'__version__ = {get_version()!r}\n')"
+ - run: python -c "from setuptools_scm import get_version; print(get_version()); open('histomicstk/_version.py', 'w').write(f'__version__ = {str(get_version()).split('+')[0]!r}\n')"
85
- run: cat histomicstk/_version.py
86
- shell: bash
87
run: |
0 commit comments