We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6031e3 commit 3b7f5bbCopy full SHA for 3b7f5bb
pyproject.toml
@@ -12,7 +12,8 @@ dependencies = [
12
"torch>=2.5.0,<2.6.0",
13
"numpy<2.0",
14
"lightning>=2.5.0,<2.6.0",
15
- "jsonargparse[signatures]>=4.30.1,<=4.32.1", # 4.33 does not seem to be compatible with Python 3.9
+ "jsonargparse[signatures]>=4.30.1,<=4.32.1; python_version<='3.9'", # 4.33 does not seem to be compatible with Python 3.9
16
+ "jsonargparse[signatures]>=4.37.0; python_version>'3.9'", # required to work with python3.12+
17
"huggingface_hub>=0.23.5", # download models
18
"safetensors>=0.4.3", # download models
19
"tokenizers>=0.15.2", # tokenization in most models
0 commit comments