Skip to content

Commit

Permalink
[py] Loosen version requirements on dependencies. Fixes #9312
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Mar 22, 2021
1 parent dabb8e4 commit 56f96c4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ py_wheel(
python_requires = "~=3.7",
python_tag = "py3",
requires = [
"urllib3[secure]==1.26.2",
"trio==0.17.0",
"trio-websocket==0.9.0",
"urllib3[secure]~=1.26",
"trio~=0.17",
"trio-websocket~=0.9",
],
strip_path_prefixes = [
"py",
Expand Down
14 changes: 10 additions & 4 deletions py/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@ multidict
outcome
pluggy
py
pytest==6.1.2
pytest-instafail==0.4.2
pytest-mock==3.3.1
pytest-trio==0.7.0
pytest~=6.1
pytest-instafail~=0.4
pytest-mock~=3.3
pytest-trio~=0.7
sortedcontainers
sniffio
<<<<<<< HEAD
trio==0.17.0
trio_websocket==0.9.0
urllib3==1.26.3
=======
trio~=0.17
trio_websocket~=0.9
urllib3~=1.26
>>>>>>> 77051cd4cc ([py] Loosen version requirements on dependencies. Fixes #9312)
zipp

0 comments on commit 56f96c4

Please sign in to comment.