Skip to content

Commit

Permalink
added conda-prefix to python interpreter to hopefully get viable binary
Browse files Browse the repository at this point in the history
Ⓜ️
  • Loading branch information
lukas.gehrig committed Dec 6, 2023
1 parent b5a9825 commit 712ff46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
LATEST_DOCKER=${{ inputs.latestDocker }}
KARABO_VERSION=${{ inputs.version }}
conda install -c conda-forge python versioneer
VERSIONEER_VERSION=$(python -c 'import versioneer; print(versioneer.get_version())')
VERSIONEER_VERSION=$($CONDA_PREFIX/bin/python -c 'import versioneer; print(versioneer.get_version())')
if [[ "$VERSIONEER_VERSION" == *"+"* ]]; then
if [[ "$KARABO_VERSION" != *"$DEV_STR"* ]]; then
echo "Dirty commit-version needs to be a PEP440 conform dev-version"
Expand Down

0 comments on commit 712ff46

Please sign in to comment.