Skip to content

Commit 56f96c4

Browse files
[py] Loosen version requirements on dependencies. Fixes #9312
1 parent dabb8e4 commit 56f96c4

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

py/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ py_wheel(
128128
python_requires = "~=3.7",
129129
python_tag = "py3",
130130
requires = [
131-
"urllib3[secure]==1.26.2",
132-
"trio==0.17.0",
133-
"trio-websocket==0.9.0",
131+
"urllib3[secure]~=1.26",
132+
"trio~=0.17",
133+
"trio-websocket~=0.9",
134134
],
135135
strip_path_prefixes = [
136136
"py",

py/requirements.txt

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ multidict
1212
outcome
1313
pluggy
1414
py
15-
pytest==6.1.2
16-
pytest-instafail==0.4.2
17-
pytest-mock==3.3.1
18-
pytest-trio==0.7.0
15+
pytest~=6.1
16+
pytest-instafail~=0.4
17+
pytest-mock~=3.3
18+
pytest-trio~=0.7
1919
sortedcontainers
2020
sniffio
21+
<<<<<<< HEAD
2122
trio==0.17.0
2223
trio_websocket==0.9.0
2324
urllib3==1.26.3
25+
=======
26+
trio~=0.17
27+
trio_websocket~=0.9
28+
urllib3~=1.26
29+
>>>>>>> 77051cd4cc ([py] Loosen version requirements on dependencies. Fixes #9312)
2430
zipp

0 commit comments

Comments
 (0)