feat: upgrade tensorflow version

This commit is contained in:
Félix Voituret
2020-01-27 14:12:22 +01:00
parent 5167f64cf6
commit 6360d03898
2 changed files with 2 additions and 2 deletions

View File

@@ -2,6 +2,6 @@ importlib_resources; python_version<'3.7'
requests requests
setuptools>=41.0.0 setuptools>=41.0.0
pandas==0.25.1 pandas==0.25.1
tensorflow==1.14.0 tensorflow==1.15
ffmpeg-python ffmpeg-python
norbert==0.2.1 norbert==0.2.1

View File

@@ -16,7 +16,7 @@ __license__ = 'MIT License'
project_name = 'spleeter' project_name = 'spleeter'
project_version = '1.4.9' project_version = '1.4.9'
tensorflow_dependency = 'tensorflow' tensorflow_dependency = 'tensorflow'
tensorflow_version = '1.14.0' tensorflow_version = '1.15'
here = path.abspath(path.dirname(__file__)) here = path.abspath(path.dirname(__file__))
readme_path = path.join(here, 'README.md') readme_path = path.join(here, 'README.md')
with open(readme_path, 'r') as stream: with open(readme_path, 'r') as stream: