We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2414d75 commit 75c1c59Copy full SHA for 75c1c59
.github/workflows/test.yml
@@ -101,10 +101,15 @@ 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
- pip install --upgrade wheel setuptools build
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
113
- name: Install
114
run: pip install --disable-pip-version-check -e .[tests]
115
- name: Test
0 commit comments