Skip to content

Commit 94ef896

Browse files
committed
fix: constrain pip version in common constraints
1 parent 45451f7 commit 94ef896

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

edx_lint/files/common_constraints.txt

+4
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ Django<4.0
2020
elasticsearch<7.14.0
2121

2222
setuptools<60
23+
24+
# pip-tools fails with latest pip==22.1 version.
25+
# The failure details are in the issue https://github.com/jazzband/pip-tools/issues/1617.
26+
pip<22.1

requirements/base.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# make upgrade
66
#
7-
astroid==2.11.4
7+
astroid==2.11.5
88
# via
99
# pylint
1010
# pylint-celery

requirements/ci.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pluggy==1.0.0
1818
# via tox
1919
py==1.11.0
2020
# via tox
21-
pyparsing==3.0.8
21+
pyparsing==3.0.9
2222
# via packaging
2323
six==1.16.0
2424
# via

requirements/dev.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# make upgrade
66
#
7-
astroid==2.11.4
7+
astroid==2.11.5
88
# via
99
# -r requirements/base.txt
1010
# pylint
@@ -80,7 +80,7 @@ pylint-plugin-utils==0.7
8080
# -r requirements/base.txt
8181
# pylint-celery
8282
# pylint-django
83-
pyparsing==3.0.8
83+
pyparsing==3.0.9
8484
# via packaging
8585
python-slugify==6.1.2
8686
# via

requirements/pip.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Core dependencies for installing other packages
2+
-c constraints.txt
23

34
pip
45
setuptools

requirements/pip.txt

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ wheel==0.35.1
99

1010
# The following packages are considered to be unsafe in a requirements file:
1111
pip==20.2.4
12-
# via -r requirements/pip.in
12+
# via
13+
# -c requirements/../edx_lint/files/common_constraints.txt
14+
# -r requirements/pip.in
1315
setuptools==50.3.2
14-
# via -r requirements/pip.in
16+
# via
17+
# -c requirements/../edx_lint/files/common_constraints.txt
18+
# -r requirements/pip.in

requirements/test.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
asgiref==3.5.1
88
# via django
9-
astroid==2.11.4
9+
astroid==2.11.5
1010
# via
1111
# -r requirements/dev.txt
1212
# pylint
@@ -24,7 +24,7 @@ code-annotations==1.3.0
2424
# via
2525
# -c requirements/constraints.txt
2626
# -r requirements/dev.txt
27-
coverage==6.3.2
27+
coverage==6.3.3
2828
# via -r requirements/test.in
2929
dill==0.3.4
3030
# via
@@ -104,7 +104,7 @@ pylint-plugin-utils==0.7
104104
# -r requirements/dev.txt
105105
# pylint-celery
106106
# pylint-django
107-
pyparsing==3.0.8
107+
pyparsing==3.0.9
108108
# via
109109
# -r requirements/dev.txt
110110
# packaging

0 commit comments

Comments
 (0)