Skip to content

Commit

Permalink
Update to v1.4 and add support for torch 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdanteleaga committed Oct 5, 2023
1 parent cb60efe commit 2b97d00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion neutone_sdk/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

SDK_VERSION = "1.3.0"
SDK_VERSION = "1.4.0"

MAX_N_PARAMS = 4
MAX_N_AUDIO_SAMPLES = 3
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "neutone_sdk"
version = "1.3.0"
version = "1.4.0"
description = "SDK for wrapping deep learning models for usage in the Neutone plugin"
readme = "README.md"
authors = ["Qosmo <[email protected]>"]
Expand All @@ -13,8 +13,8 @@ packages = [{include = "neutone_sdk"}]
click = ">=8.1.7,<9.0.0"
python = "^3.7"
numpy = "^1.21.6"
torch = ">=1.11.0,<2.1.0"
torchaudio = ">=0.11.0,<2.1.0"
torch = ">=1.11.0,<2.2.0"
torchaudio = ">=0.11.0,<2.2.0"
soundfile = ">=0.12.1"
jsonschema = "^4.4.0"
requests = "^2.27.1"
Expand All @@ -25,5 +25,5 @@ black = "22.3.0"
pytest = "*"

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 2b97d00

Please sign in to comment.