Remove version cap for torch and torchaudio, add support for python 3.13 and 3.14

This commit is contained in:
mbsantiago 2026-03-25 12:45:11 +00:00
parent d031e00250
commit a8c5bff67b
2 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4

View File

@ -14,11 +14,11 @@ dependencies = [
"pandas>=1.5.3",
"scikit-learn>=1.2.2",
"scipy>=1.10.1",
"torch>=1.13.1,<2.5.0",
"torchaudio>=1.13.1,<2.5.0",
"torch>=1.13.1",
"torchaudio>=1.13.1",
"torchvision>=0.14.0",
]
requires-python = ">=3.9,<3.13"
requires-python = ">=3.9,<3.15"
readme = "README.md"
license = { text = "CC-by-nc-4" }
classifiers = [