Skip to content

Commit

Permalink
remove pip pin (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg authored Aug 6, 2024
1 parent 68c93d8 commit 478b069
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/code-quality/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
shell: bash
run: |
set -ex
python -m pip install --upgrade 'pip<23' wheel
python -m pip install --upgrade pip wheel
python -m pip install --upgrade .${{ inputs.pip_deps }}
- name: Run checks
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/coverage/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
shell: bash
run: |
set -ex
python -m pip install --upgrade 'pip<23' wheel
python -m pip install --upgrade pip wheel
pip install coverage[toml]==6.5.0
- name: Download artifacts
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/pytest-cpu/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ runs:
set -ex
export PATH=/composer-python:$PATH
export COMPOSER_PACKAGE_NAME='${{ inputs.composer_package_name }}'
python -m pip install --upgrade 'pip<23' wheel
python -m pip install --upgrade pip wheel
python -m pip install --upgrade .${{ inputs.pip_deps }}
- name: Run Tests
id: tests
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/smoketest/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
shell: bash
run: |
set -ex
python -m pip install --upgrade 'pip<23' wheel
python -m pip install --upgrade pip wheel
python -m pip install --upgrade .
python -m pip install pytest==7.2.1 pytest_codeblocks==0.16.1
- name: Run checks
Expand Down

0 comments on commit 478b069

Please sign in to comment.