Skip to content

Commit

Permalink
update actions/install-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
andeaseme committed Oct 25, 2023
1 parent 8aeabc3 commit f32b79a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions actions/install-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,10 @@ runs:
echo "Installing isee from source"
python setup.py sdist
pip install $(ls -t dist/isee-*.tar.gz 2>/dev/null | head -n 1)
isee_installed=true
elif [[ "${{ inputs.pypi-packages }}" == "wads" && "${{ github.repository }}" == "i2mint/wads" ]]; then
echo "Installing wads from source"
python setup.py sdist
pip install $(ls -t dist/wads-*.tar.gz 2>/dev/null | head -n 1)
isee_installed=true
else
python -m pip install --upgrade pip wheel
pip install ${{ inputs.pypi-packages }}
Expand Down

0 comments on commit f32b79a

Please sign in to comment.