Skip to content

Commit

Permalink
build: specify minimum versions for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eginhard committed Jun 28, 2024
1 parent 6f1f613 commit d01b2f7
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,24 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"coqpit",
"fsspec",
"numpy",
"psutil",
"soundfile",
"tensorboard",
"coqpit>=0.0.17",
"fsspec>=2023.6.0",
"numpy>=1.24.3; python_version < '3.12'",
"numpy>=1.26.0; python_version >= '3.12'",
"psutil>=5",
"soundfile>=0.12.0",
"tensorboard>=2.17.0",
"torch>=2.0",
]

[project.optional-dependencies]
# Development dependencies
dev = [
"coverage",
"pre-commit",
"pytest",
"coverage>=7",
"pre-commit>=3",
"pytest>=8",
"ruff==0.4.10",
"tomli; python_version < '3.11'",
"tomli>=2; python_version < '3.11'",
]
# Dependencies for running the tests
test = [
Expand Down

0 comments on commit d01b2f7

Please sign in to comment.