Release constrain on tf version

This commit is contained in:
mmoussallam
2022-09-02 10:10:38 +02:00
parent 4aba6011d6
commit a5893bae99
3 changed files with 544 additions and 409 deletions

View File

@@ -1,5 +1,8 @@
# Changelog History # Changelog History
## 2.3.2
Release contrain on specific Tensorflow and Librosa versions
## 2.3.0 ## 2.3.0
Updating dependencies to enable TensorFlow 2.5 support (and Python 3.9 overall) Updating dependencies to enable TensorFlow 2.5 support (and Python 3.9 overall)

943
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "spleeter" name = "spleeter"
version = "2.3.1" version = "2.3.2"
description = "The Deezer source separation library with pretrained models based on tensorflow." description = "The Deezer source separation library with pretrained models based on tensorflow."
authors = ["Deezer Research <spleeter@deezer.com>"] authors = ["Deezer Research <spleeter@deezer.com>"]
license = "MIT License" license = "MIT License"
@@ -24,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Topic :: Artistic Software", "Topic :: Artistic Software",
@@ -49,10 +50,10 @@ ffmpeg-python = "0.2.0"
norbert = "0.2.1" norbert = "0.2.1"
httpx = {extras = ["http2"], version = "^0.19.0"} httpx = {extras = ["http2"], version = "^0.19.0"}
typer = "^0.3.2" typer = "^0.3.2"
librosa = "0.8.0" librosa = "^0.8.0"
musdb = {version = "0.3.1", optional = true} musdb = {version = "0.3.1", optional = true}
museval = {version = "0.3.0", optional = true} museval = {version = "0.3.0", optional = true}
tensorflow = "2.5.0" tensorflow = "^2.5.0"
pandas = "^1.1.2" pandas = "^1.1.2"
numpy = "<1.20.0,>=1.16.0" numpy = "<1.20.0,>=1.16.0"
importlib-resources = {version = "^4.1.1", python = "<3.7"} importlib-resources = {version = "^4.1.1", python = "<3.7"}