From b4915787636822c9abbf9a871a9cb91ad8ef495d Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Tue, 20 Dec 2022 15:35:26 +0100 Subject: [PATCH] Allow dependencies up to next major version Fixes #11905 --- api/setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api/setup.py b/api/setup.py index c78161b5614..ce093075df4 100755 --- a/api/setup.py +++ b/api/setup.py @@ -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"',