Skip to content

Commit 47748a1

Browse files
authored
Merge pull request #52 from Hi-king/fix/too_strict_dependencies
Fix too strict dependencies
2 parents de1bd1c + 9f2050a commit 47748a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
install_requires = [
1010
'luigi',
1111
'gokart>=0.1.20',
12-
'python-dateutil==2.7.5',
12+
'python-dateutil>=2.7.5',
1313
'pandas',
1414
'scipy',
1515
'numpy',
1616
'gensim',
1717
'scikit-learn',
1818
'tensorflow>=1.13.1, <2.0',
1919
'tqdm',
20-
'optuna==0.6.0',
21-
'docutils==0.15' # to avoid dependency conflict
20+
'docutils==0.15', # to avoid dependency conflict
21+
'optuna>=0.6.0',
2222
]
2323

2424
setup(

0 commit comments

Comments
 (0)