You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our first release was 0.1.0alpha. However, the Python package installed from the conda binary reports version 0.1.0-dev because setuptools-scm can't find any Git tags (since we are installing from the GitHub release tarball).
Successfully built tiledbsoma-ml
Installing collected packages: tiledbsoma-ml
Successfully installed tiledbsoma-ml-0.1.0.dev0
And __version__ reported 0.1.0-dev:
python -c 'import tiledbsoma_ml as soma_ml; print(soma_ml.__version__)'## 0.1.0-dev
So apparently setuptools-scm uses SETUPTOOLS_SCM_PRETEND_VERSION when building from a PyPI source tarball but not when directly building from the GitHub source tarball.
Our first release was 0.1.0alpha. However, the Python package installed from the conda binary reports version
0.1.0-dev
because setuptools-scm can't find any Git tags (since we are installing from the GitHub release tarball).There are two potential workarounds to fix this:
PKG-INFO
. This is the strategy I used for cellxgene-census in Set package version via SETUPTOOLS_SCM_PRETEND_VERSION cellxgene-census-feedstock#16. The main drawback of this approach is that it isn't feasible until we submit tiledbsoma-ml to PyPIThe text was updated successfully, but these errors were encountered: