Skip to content

Commit e605e62

Browse files
committed
Make deps more flexible and bump sdk version to v1.5.2
1 parent 8455260 commit e605e62

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

neutone_sdk/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22

3-
SDK_VERSION = "1.5.1"
3+
SDK_VERSION = "1.5.2"
44

55
MAX_N_PARAMS = 4
66
MAX_N_CATEGORICAL_VALUES = 20

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "neutone_sdk"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
description = "SDK for wrapping deep learning models for usage in the Neutone plugin"
55
readme = "README.md"
66
authors = ["Qosmo <contact@qosmo.jp>"]
@@ -12,9 +12,9 @@ packages = [{include = "neutone_sdk"}]
1212
[tool.poetry.dependencies]
1313
click = ">=8.1.7,<9.0.0"
1414
python = ">=3.8,<4.0"
15-
numpy = "^1.21.6"
16-
torch = ">=1.11.0,<2.10.0"
17-
torchaudio = ">=0.11.0,<2.10.0"
15+
numpy = ">=1.21.6,<2.3.0"
16+
torch = ">=1.11.0,<3.0.0"
17+
torchaudio = ">=0.11.0,<3.0.0"
1818
soundfile = ">=0.12.1"
1919
jsonschema = "^4.21.0"
2020
requests = "^2.27.1"

0 commit comments

Comments
 (0)