Skip to content

Commit 4e78f50

Browse files
authored
Roll python deps & add pigweed's (project-chip#4168)
This will help avoid issues like the one fixed by project-chip#4165, where a pip package used by pigweed updated underneath us and broke. These are gathered from install_requires in setup.py of packages we install. Currently we don't have a way to fail the build if there's an unpinned dep; they'll have to be found manually and added to requirements.in.
1 parent de88e5a commit 4e78f50

File tree

2 files changed

+35
-12
lines changed

2 files changed

+35
-12
lines changed

scripts/requirements.in

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pyelftools>=0.22
1313
requests>=2.24.0
1414

1515
# device controller wheel package
16-
wheel>=0.34.2
16+
wheel==0.34.2
1717

1818
# mobly tests
1919
portpicker
@@ -25,3 +25,9 @@ west>=0.8.0
2525
# happy tests
2626
lockfile
2727
psutil >= 5.7.3
28+
29+
# pigweed
30+
ipython
31+
coloredlogs
32+
watchdog
33+
protobuf

scripts/requirements.txt

+28-11
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,50 @@
44
#
55
# pip-compile requirements.in
66
#
7-
certifi==2020.6.20 # via requests
8-
cffi==1.14.3 # via cryptography
7+
backcall==0.2.0 # via ipython
8+
certifi==2020.12.5 # via requests
9+
cffi==1.14.4 # via cryptography
910
chardet==3.0.4 # via requests
1011
click==7.1.2 # via -r requirements.in, pip-tools
1112
colorama==0.4.4 # via west
13+
coloredlogs==15.0 # via -r requirements.in
1214
configobj==5.0.6 # via west
13-
cryptography==3.2.1 # via -r requirements.in
15+
cryptography==3.3.1 # via -r requirements.in
16+
decorator==4.4.2 # via ipython
1417
docopt==0.6.2 # via pykwalify
1518
future==0.18.2 # via -r requirements.in, mobly
19+
humanfriendly==9.1 # via coloredlogs
1620
idna==2.10 # via requests
21+
ipython-genutils==0.2.0 # via traitlets
22+
ipython==7.19.0 # via -r requirements.in
23+
jedi==0.17.2 # via ipython
1724
lockfile==0.12.2 # via -r requirements.in
1825
mobly==1.10 # via -r requirements.in
19-
packaging==20.4 # via west
20-
pip-tools==5.3.1 # via -r requirements.in
26+
packaging==20.7 # via west
27+
parso==0.7.1 # via jedi
28+
pexpect==4.8.0 # via ipython
29+
pickleshare==0.7.5 # via ipython
30+
pip-tools==5.4.0 # via -r requirements.in
2131
portpicker==1.3.1 # via -r requirements.in, mobly
32+
prompt-toolkit==3.0.8 # via ipython
33+
protobuf==3.14.0 # via -r requirements.in
2234
psutil==5.7.3 # via -r requirements.in, mobly
35+
ptyprocess==0.6.0 # via pexpect
2336
pycparser==2.20 # via cffi
24-
pyelftools==0.26 # via -r requirements.in
37+
pyelftools==0.27 # via -r requirements.in
38+
pygments==2.7.3 # via ipython
2539
pykwalify==1.7.0 # via west
2640
pyparsing==2.3.1 # via -r requirements.in, packaging
27-
pyserial==3.4 # via -r requirements.in, mobly
41+
pyserial==3.5 # via -r requirements.in, mobly
2842
python-dateutil==2.8.1 # via pykwalify
2943
pyyaml==5.3.1 # via mobly, pykwalify, west
30-
requests==2.24.0 # via -r requirements.in
31-
six==1.15.0 # via configobj, cryptography, packaging, pip-tools, python-dateutil
32-
timeout-decorator==0.4.1 # via mobly
33-
urllib3==1.25.10 # via requests
44+
requests==2.25.0 # via -r requirements.in
45+
six==1.15.0 # via configobj, cryptography, pip-tools, protobuf, python-dateutil
46+
timeout-decorator==0.5.0 # via mobly
47+
traitlets==5.0.5 # via ipython
48+
urllib3==1.26.2 # via requests
49+
watchdog==1.0.1 # via -r requirements.in
50+
wcwidth==0.2.5 # via prompt-toolkit
3451
west==0.8.0 # via -r requirements.in
3552
wheel==0.34.2 # via -r requirements.in
3653

0 commit comments

Comments
 (0)