Skip to content

Commit

Permalink
Allow dependencies up to next major version
Browse files Browse the repository at this point in the history
Fixes #11905
  • Loading branch information
ecederstrand authored Dec 20, 2022
1 parent 98df3db commit b491578
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ def get_version():
PACKAGES = find_packages(where="src")
INSTALL_REQUIRES = [
f"opentrons-shared-data=={VERSION}",
"aionotify==0.2.0",
"anyio==3.3.0",
"jsonschema==3.0.2",
"aionotify>=0.2.0,<0.3",
"anyio>=3.3.0,<4",
"jsonschema>=3.0.2,<4",
"numpy>=1.15.1,<2",
"pydantic==1.8.2",
"pyserial==3.5",
"pydantic>=1.8.2,<2",
"pyserial>=3.5,<4",
"typing-extensions>=4.0.0,<5",
"click>=8.0.0,<9",
'importlib-metadata >= 1.0 ; python_version < "3.8"',
Expand Down

0 comments on commit b491578

Please sign in to comment.