From 2b97d00174bba57e93470486476a8b5e9f174fba Mon Sep 17 00:00:00 2001 From: Bogdan TELEAGA Date: Thu, 5 Oct 2023 13:32:35 +0900 Subject: [PATCH] Update to v1.4 and add support for torch 2.1 --- neutone_sdk/constants.py | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/neutone_sdk/constants.py b/neutone_sdk/constants.py index 0723c2e..726a898 100644 --- a/neutone_sdk/constants.py +++ b/neutone_sdk/constants.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 91fe51c..97acadf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] @@ -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" @@ -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"