We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2a473 commit 6dbcda4Copy full SHA for 6dbcda4
3 files changed
requirements.txt
@@ -1,2 +1,3 @@
1
# Requirements for development and mybinder environment
2
-e .[dev]
3
+docutils<0.16,>=0.10 # Fix dependency conflict on mybinder
setup.py
@@ -20,12 +20,14 @@
20
21
22
mlprimitives_requires = [
23
- 'mlprimitives>=0.3.0.dev0,<0.4',
+ 'mlprimitives>=0.3.0,<0.4',
24
+ 'h5py<2.11.0,>=2.10.0', # <- tensorflow 2.3.2 conflict
25
+ 'matplotlib<3.2.2,>=2.2.2', # <- copulas 0.3.3
26
]
27
28
examples_require = mlprimitives_requires + [
29
'jupyter==1.0.0',
- 'baytune>=0.3.13.dev0,<0.4',
30
+ 'baytune>=0.4.0,<0.5',
31
32
33
tox.ini
@@ -9,6 +9,7 @@ python =
9
10
[testenv]
11
passenv = CI TRAVIS TRAVIS_*
12
+allowlist_externals = rm
13
skipsdist = false
14
skip_install = false
15
extras = test
0 commit comments