Skip to content

Commit

Permalink
chore: fix CI with pip 21.3 (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius authored Oct 12, 2021
1 parent f26edd3 commit 9ebd943
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python -m pip install -e .[all]
python -m pip install .[all]
- name: Build Package
run: python setup.py sdist bdist_wheel
- name: test with twine
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install coveralls setuptools wheel
python -m pip install -e .[nodocs]
python -m pip install .[nodocs]
python setup.py --version
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install coveralls setuptools wheel
python -m pip install -e .[nodocs]
python -m pip install .[nodocs]
python setup.py --version
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install coveralls setuptools wheel
python -m pip install -e .[nodocs]
python -m pip install .[nodocs]
python setup.py --version
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install coveralls setuptools wheel
python -m pip install -e .[nodocs]
python -m pip install .[nodocs]
python setup.py --version
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
brew install shellcheck node || brew link --overwrite node
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
python -m pip install -e .[all]
python -m pip install .[all]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Test with pytest
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
brew install shellcheck node || brew link --overwrite node
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
python -m pip install -e .[all]
python -m pip install .[all]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Test with pytest
Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
brew install shellcheck node || brew link --overwrite node
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
python -m pip install -e .[all]
python -m pip install .[all]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Test with pytest
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:
brew install shellcheck node || brew link --overwrite node
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
python -m pip install -e .[all]
python -m pip install .[all]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Test with pytest
Expand Down Expand Up @@ -440,7 +440,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install coveralls setuptools wheel
python -m pip install -e .[nodocs]
python -m pip install .[nodocs]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Test with pytest
Expand Down Expand Up @@ -496,7 +496,7 @@ jobs:
brew install shellcheck node || brew link --overwrite node
python -m pip install --upgrade pip
python -m pip install setuptools wheel
python -m pip install -e .[all]
python -m pip install .[all]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Test with pytest
Expand Down Expand Up @@ -536,7 +536,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python -m pip install -e .[all]
python -m pip install .[all]
git config --global --add user.name "Renku @ SDSC"
git config --global --add user.email "[email protected]"
- name: Tag if necessary
Expand Down

0 comments on commit 9ebd943

Please sign in to comment.