From 470562b2478abcf5fd8976f5162d496c7b5116ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 07:39:58 +0000 Subject: [PATCH 1/5] build(deps): update onnxruntime requirement in /requirements Updates the requirements on [onnxruntime](https://github.com/microsoft/onnxruntime) to permit the latest version. - [Release notes](https://github.com/microsoft/onnxruntime/releases) - [Changelog](https://github.com/microsoft/onnxruntime/blob/main/docs/ReleaseManagement.md) - [Commits](https://github.com/microsoft/onnxruntime/compare/v1.12.0...v1.19.0) --- updated-dependencies: - dependency-name: onnxruntime dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements/audio.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/audio.txt b/requirements/audio.txt index e6e52f967dc..0e443bfc4c0 100644 --- a/requirements/audio.txt +++ b/requirements/audio.txt @@ -7,5 +7,5 @@ pystoi >=0.4.0, <0.5.0 torchaudio >=0.10.0, <2.5.0 gammatone >=1.0.0, <1.1.0 librosa >=0.9.0, <0.11.0 -onnxruntime >=1.12.0, <1.19 # installing onnxruntime_gpu-gpu failed on macos +onnxruntime >=1.12.0, <1.20 # installing onnxruntime_gpu-gpu failed on macos requests >=2.19.0, <2.33.0 From a4b34de39398326c6e955902e40c043d9da949f0 Mon Sep 17 00:00:00 2001 From: Nicki Skafte Date: Tue, 27 Aug 2024 11:42:34 +0200 Subject: [PATCH 2/5] bump numpy --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 2ce12be4af2..0a19fa9e7c3 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,7 +1,7 @@ # NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package # in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment -numpy >1.20.0 +numpy >1.21.6 packaging >17.1 torch >=1.10.0, <2.5.0 typing-extensions; python_version < '3.9' From abf170904d4790bef3401db605a4df0f03659515 Mon Sep 17 00:00:00 2001 From: Nicki Skafte Date: Wed, 28 Aug 2024 14:27:33 +0200 Subject: [PATCH 3/5] try again --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 0a19fa9e7c3..55e81b9e91c 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,7 +1,7 @@ # NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package # in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment -numpy >1.21.6 +numpy >=1.21.6 packaging >17.1 torch >=1.10.0, <2.5.0 typing-extensions; python_version < '3.9' From f9b93ee5cd1742fa34e8b5938b8f90600463e074 Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Mon, 2 Sep 2024 12:05:34 +0200 Subject: [PATCH 4/5] Apply suggestions from code review --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 55e81b9e91c..1fa950a1c32 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,7 +1,7 @@ # NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package # in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment -numpy >=1.21.6 +numpy >=1.21.6, <2.0 # strict, for compatibility reasons packaging >17.1 torch >=1.10.0, <2.5.0 typing-extensions; python_version < '3.9' From cb135dc75e07b7b89c398ff2923aa9415c84ff45 Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Mon, 2 Sep 2024 12:05:56 +0200 Subject: [PATCH 5/5] Apply suggestions from code review --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 1fa950a1c32..0140f7a5519 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,7 +1,7 @@ # NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package # in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment -numpy >=1.21.6, <2.0 # strict, for compatibility reasons +numpy >1.20.0, <2.0 # strict, for compatibility reasons packaging >17.1 torch >=1.10.0, <2.5.0 typing-extensions; python_version < '3.9'