Skip to content

Commit 135b8e2

Browse files
[py] Pin key dependencies in the build
1 parent c2e76c5 commit 135b8e2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

py/BUILD.bazel

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ py_wheel(
9898
python_tag = "py3",
9999
python_requires = "~=3.7",
100100
requires = [
101-
"urllib3[secure]",
102-
"trio",
103-
"trio-websocket",
101+
"urllib3[secure]==1.26.2",
102+
"trio==0.17.0",
103+
"trio-websocket==0.9.0",
104104
],
105105
strip_path_prefixes = [
106106
"py",

py/requirements.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ multidict
1212
outcome
1313
pluggy
1414
py
15-
pytest
16-
pytest-instafail
17-
pytest-mock
18-
pytest-trio
15+
pytest==6.1.2
16+
pytest-instafail==0.4.2
17+
pytest-mock==3.3.1
18+
pytest-trio==0.7.0
1919
sortedcontainers
2020
sniffio
21-
trio
22-
trio_websocket
23-
urllib3
21+
trio==0.17.0
22+
trio_websocket==0.9.0
23+
urllib3==1.26.2
2424
zipp

0 commit comments

Comments
 (0)