Skip to content

Commit 2894850

Browse files
committed
setup.py
1 parent 7b9cc9a commit 2894850

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/qiita-test-install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,11 @@ class QiitaConfig(TestCase):
232232
string_acceptable_version))
233233

234234
def test_redbiom_version(self):
235-
acceptable_version = (0, 3, 5)
235+
acceptable_version = (0, 3, 8)
236236
string_acceptable_version = '.'.join(map(str, acceptable_version))
237237
version = tuple(map(int, redbiom_lib_version.split('.')))
238238

239-
self.assertTrue(acceptable_version == version,
239+
self.assertTrue(acceptable_version >= version,
240240
'Unsupported redbiom version. You have %s but the '
241241
'minimum required version is %s'
242242
% ('.'.join(map(str, version)),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
install_requires=['psycopg2', 'click', 'bcrypt', 'pandas',
106106
'biom-format', 'tornado<6.0', 'toredis', 'redis',
107107
'scp', 'pyparsing', 'h5py', 'natsort', 'nose', 'pep8',
108-
'networkx', 'humanize', 'scikit-bio', 'wtforms',
108+
'networkx', 'humanize', 'scikit-bio', 'wtforms<3.0.0',
109109
'openpyxl', 'sphinx-bootstrap-theme', 'Sphinx', 'nltk',
110110
'gitpython', 'redbiom', 'pyzmq', 'sphinx_rtd_theme',
111111
'paramiko', 'seaborn', 'matplotlib', 'scipy', 'nose',

0 commit comments

Comments
 (0)