Skip to content

Commit 478b069

Browse files
authored
remove pip pin (#19)
1 parent 68c93d8 commit 478b069

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/code-quality/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
shell: bash
1818
run: |
1919
set -ex
20-
python -m pip install --upgrade 'pip<23' wheel
20+
python -m pip install --upgrade pip wheel
2121
python -m pip install --upgrade .${{ inputs.pip_deps }}
2222
- name: Run checks
2323
shell: bash

.github/actions/coverage/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
shell: bash
1111
run: |
1212
set -ex
13-
python -m pip install --upgrade 'pip<23' wheel
13+
python -m pip install --upgrade pip wheel
1414
pip install coverage[toml]==6.5.0
1515
- name: Download artifacts
1616
uses: actions/download-artifact@v3

.github/actions/pytest-cpu/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ runs:
7171
set -ex
7272
export PATH=/composer-python:$PATH
7373
export COMPOSER_PACKAGE_NAME='${{ inputs.composer_package_name }}'
74-
python -m pip install --upgrade 'pip<23' wheel
74+
python -m pip install --upgrade pip wheel
7575
python -m pip install --upgrade .${{ inputs.pip_deps }}
7676
- name: Run Tests
7777
id: tests

.github/actions/smoketest/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
shell: bash
1414
run: |
1515
set -ex
16-
python -m pip install --upgrade 'pip<23' wheel
16+
python -m pip install --upgrade pip wheel
1717
python -m pip install --upgrade .
1818
python -m pip install pytest==7.2.1 pytest_codeblocks==0.16.1
1919
- name: Run checks

0 commit comments

Comments
 (0)