Skip to content

Commit

Permalink
pass test pypi url as extra index
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham3121 committed Apr 2, 2024
1 parent da6f7a6 commit 4bf4235
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 @@ -174,7 +174,7 @@ jobs:
pip install syft==${{inputs.syft_version}}
fi
if [[ ${{ inputs.release_platform }} == "TEST_PYPI" ]]; then
pip install -i https://test.pypi.org/simple/ syft==${{inputs.syft_version}}
pip install --extra-index-url https://test.pypi.org/simple/ syft==${{inputs.syft_version}}
fi
- name: Check Syft version
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
SYFT_VERSION: ${{ inputs.syft_version }}
run: |
if [[ ${{ inputs.release_platform }} == "TEST_PYPI" ]]; then
pip install -i https://test.pypi.org/simple/ syft[data_science,dev]==${{ inputs.syft_version }}
pip install --extra-index-url https://test.pypi.org/simple/ syft[data_science,dev]==${{ inputs.syft_version }}
fi
if [[ ${{ inputs.release_platform }} == "REAL_PYPI" ]]; then
pip install syft[data_science,dev]==${{ inputs.syft_version }}
Expand Down

0 comments on commit 4bf4235

Please sign in to comment.