We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75c1c59 commit 43b7329Copy full SHA for 43b7329
.github/workflows/test.yml
@@ -101,15 +101,10 @@ jobs:
101
with:
102
python-version: ${{ matrix.python-version }}
103
cache: "pip"
104
- # setuptools is currently pinned due to new enforcement of no dashes in upstream packages
105
- name: Upgrade pip
106
run: |
107
python -m pip install --upgrade pip
108
- if [[ "${{ matrix.python-version }}" == "3.7" ]]; then
109
- pip install --upgrade wheel build setuptools==68.0.0
110
- elif [[ "${{ matrix.python-version }}" == "3.12" ]]; then
111
- pip install --upgrade wheel build setuptools==77.0.3
112
- fi
+ pip install --upgrade wheel setuptools build
113
- name: Install
114
run: pip install --disable-pip-version-check -e .[tests]
115
- name: Test
0 commit comments