Skip to content

Commit e724173

Browse files
author
Nehal Patel
authored
Loosen dependencies to allow newer packages (#1028)
Many dependencies are very outdated and when openhtf is combined with or used with other projects, version conflicts become very challenging to unwind. NOTE: tornado is left with a '<5.0' dependency as there have been some major API changes that require more extensive refactors to accommodate.
1 parent decaa03 commit e724173

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

setup.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,16 @@ def run(self):
130130

131131
INSTALL_REQUIRES = [
132132
'attrs>=19.3.0',
133-
'colorama>=0.3.9,<1.0',
134-
'contextlib2>=0.5.1,<1.0',
135-
'google-auth>=1.34.0',
133+
'colorama>=0.3.9',
134+
'contextlib2>=0.5.1',
136135
'inflection',
137-
'mutablerecords>=0.4.1,<2.0',
136+
'google-auth>=1.34.0',
137+
'mutablerecords>=0.4.1',
138138
'protobuf>=3.6.0,<4.0',
139139
'PyYAML>=3.13',
140-
'pyOpenSSL>=17.1.0,<23',
140+
'pyOpenSSL>=17.1.0',
141141
'requests>=2.27.1',
142-
'sockjs-tornado>=1.0.3,<2.0',
142+
'sockjs-tornado>=1.0.3',
143143
'tornado>=4.3,<5.0',
144144
'typing-extensions',
145145
]
@@ -205,11 +205,11 @@ def run_tests(self):
205205
install_requires=INSTALL_REQUIRES,
206206
extras_require={
207207
'usb_plugs': [
208-
'libusb1>=1.3.0,<2.0',
209-
'M2Crypto>=0.22.3,<1.0',
208+
'libusb1>=1.3.0',
209+
'M2Crypto>=0.22.3',
210210
],
211-
'update_units': ['xlrd>=1.0.0,<2.0',],
212-
'serial_collection_plug': ['pyserial>=3.3.0,<4.0',],
211+
'update_units': ['xlrd>=1.0.0',],
212+
'serial_collection_plug': ['pyserial>=3.3.0',],
213213
'examples': ['pandas>=0.22.0',],
214214
},
215215
tests_require=[

0 commit comments

Comments
 (0)