Skip to content

Commit

Permalink
fix syntax of installing syft with data_science
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham3121 committed Apr 2, 2024
1 parent 1f31628 commit 3a5886a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-post-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,10 @@ jobs:
SYFT_VERSION: ${{ inputs.syft_version }}
run: |
if [[ ${{ inputs.release_platform }} == "TEST_PYPI" ]]; then
pip install -i https://test.pypi.org/simple/ syft==${{ inputs.syft_version }}[data_science]
pip install -i https://test.pypi.org/simple/ syft[data_science]==${{ inputs.syft_version }}
fi
if [[ ${{ inputs.release_platform }} == "REAL_PYPI" ]]; then
pip install syft==${{ inputs.syft_version }}[data_science]
pip install syft[data_science]==${{ inputs.syft_version }}
fi
- name: Install Hagrid, tox and uv
Expand Down

0 comments on commit 3a5886a

Please sign in to comment.