30
30
python-version : ${{ matrix.python-version }}
31
31
- name : Install dependencies
32
32
run : |
33
- pip install -U pip setuptools wheel
33
+ pip install -U pip " setuptools<79.0.0" wheel
34
34
SETUPTOOLS_ENABLE_FEATURES=legacy-editable pip install -r ./requirements.txt
35
35
36
36
- name : Run mypy on plugin code
63
63
python-version : ${{ matrix.python-version }}
64
64
- name : Install dependencies
65
65
run : |
66
- pip install -U pip setuptools wheel
66
+ pip install -U pip " setuptools<79.0.0" wheel
67
67
SETUPTOOLS_ENABLE_FEATURES=legacy-editable pip install -r ./requirements.txt
68
68
69
69
# Must match `shard` definition in the test matrix:
91
91
python-version : ${{ matrix.python-version }}
92
92
- name : Install dependencies
93
93
run : |
94
- pip install -U pip setuptools wheel
94
+ pip install -U pip " setuptools<79.0.0" wheel
95
95
SETUPTOOLS_ENABLE_FEATURES=legacy-editable pip install -r ./requirements.txt
96
96
97
97
- name : Run stubtest
@@ -112,7 +112,7 @@ jobs:
112
112
python-version : ${{ matrix.python-version }}
113
113
- name : Install dependencies
114
114
run : |
115
- pip install -U pip setuptools wheel
115
+ pip install -U pip " setuptools<79.0.0" wheel
116
116
SETUPTOOLS_ENABLE_FEATURES=legacy-editable pip install -r ./requirements.txt
117
117
- name : Run pyright on the stubs
118
118
uses : jakebailey/pyright-action@v2
@@ -146,7 +146,7 @@ jobs:
146
146
python-version : ${{ matrix.python-version }}
147
147
- name : Install dependencies
148
148
run : |
149
- pip install -U pip setuptools wheel
149
+ pip install -U pip " setuptools<79.0.0" wheel
150
150
SETUPTOOLS_ENABLE_FEATURES=legacy-editable pip install -r ./requirements.txt
151
151
pip install "Django==${{ matrix.django-version }}"
152
152
pip check
0 commit comments