Skip to content

Commit 1332c47

Browse files
authored
Merge pull request #26158 from meeseeksmachine/auto-backport-of-pr-26153-on-v3.7.x
Backport PR #26153 on branch v3.7.x (Restrict pyparsing version)
2 parents 6df3f1c + 474ae89 commit 1332c47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
# Install dependencies from PyPI.
186186
python -m pip install --upgrade $PRE \
187187
'contourpy>=1.0.1' cycler fonttools kiwisolver importlib_resources \
188-
numpy packaging pillow pyparsing python-dateutil setuptools-scm \
188+
numpy packaging pillow 'pyparsing!=3.1.0' python-dateutil setuptools-scm \
189189
-r requirements/testing/all.txt \
190190
${{ matrix.extra-requirements }}
191191

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies:
1919
- pillow>=6.2
2020
- pybind11>=2.6.0
2121
- pygobject
22-
- pyparsing
22+
- pyparsing!=3.1.0
2323
- pyqt
2424
- python-dateutil>=2.1
2525
- setuptools

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def make_release_tree(self, base_dir, files):
325325
"numpy>=1.20",
326326
"packaging>=20.0",
327327
"pillow>=6.2.0",
328-
"pyparsing>=2.3.1",
328+
"pyparsing>=2.3.1,<3.1",
329329
"python-dateutil>=2.7",
330330
] + (
331331
# Installing from a git checkout that is not producing a wheel.

0 commit comments

Comments
 (0)