Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +6 -11
requirements.txt
CHANGED
@@ -5,14 +5,14 @@ blinker==1.8.2
|
|
5 |
cachetools==5.5.0
|
6 |
certifi==2024.8.30
|
7 |
charset-normalizer==3.3.2
|
8 |
-
click
|
9 |
colorama==0.4.6
|
10 |
easyocr==1.7.2 # Ensure this is the intended version
|
11 |
filelock==3.16.1
|
12 |
fsspec==2024.9.0
|
13 |
gitdb==4.0.11
|
14 |
GitPython==3.1.43
|
15 |
-
huggingface-hub==0.25.1
|
16 |
idna==3.10
|
17 |
imageio==2.35.1
|
18 |
inexactsearch==1.0.2
|
@@ -33,7 +33,7 @@ packaging==24.1
|
|
33 |
pandas==2.2.3
|
34 |
pillow==10.4.0 # Ensure this is the intended version
|
35 |
pip==24.0
|
36 |
-
protobuf
|
37 |
psutil==6.0.0
|
38 |
pyarrow==17.0.0
|
39 |
pyclipper==1.3.0.post5
|
@@ -45,7 +45,7 @@ pytz==2024.2
|
|
45 |
PyYAML==6.0.2
|
46 |
referencing==0.35.1
|
47 |
regex==2024.9.11
|
48 |
-
requests==2.32.3
|
49 |
rich==13.8.1
|
50 |
rpds-py==0.20.0
|
51 |
safetensors==0.4.5
|
@@ -77,10 +77,5 @@ tzdata==2024.2
|
|
77 |
urllib3==2.2.3
|
78 |
verovio==4.3.1
|
79 |
watchdog==4.0.2
|
80 |
-
datasets
|
81 |
-
|
82 |
-
hf-transfer>=0.1.4
|
83 |
-
protobuf<4
|
84 |
-
click<8.1
|
85 |
-
pydantic~=1.0
|
86 |
-
requests
|
|
|
5 |
cachetools==5.5.0
|
6 |
certifi==2024.8.30
|
7 |
charset-normalizer==3.3.2
|
8 |
+
click<8.1 # Adjusted version constraint
|
9 |
colorama==0.4.6
|
10 |
easyocr==1.7.2 # Ensure this is the intended version
|
11 |
filelock==3.16.1
|
12 |
fsspec==2024.9.0
|
13 |
gitdb==4.0.11
|
14 |
GitPython==3.1.43
|
15 |
+
huggingface-hub==0.25.1 # Remove duplicate entry
|
16 |
idna==3.10
|
17 |
imageio==2.35.1
|
18 |
inexactsearch==1.0.2
|
|
|
33 |
pandas==2.2.3
|
34 |
pillow==10.4.0 # Ensure this is the intended version
|
35 |
pip==24.0
|
36 |
+
protobuf<4 # Adjusted version constraint
|
37 |
psutil==6.0.0
|
38 |
pyarrow==17.0.0
|
39 |
pyclipper==1.3.0.post5
|
|
|
45 |
PyYAML==6.0.2
|
46 |
referencing==0.35.1
|
47 |
regex==2024.9.11
|
48 |
+
requests==2.32.3 # Specify version
|
49 |
rich==13.8.1
|
50 |
rpds-py==0.20.0
|
51 |
safetensors==0.4.5
|
|
|
77 |
urllib3==2.2.3
|
78 |
verovio==4.3.1
|
79 |
watchdog==4.0.2
|
80 |
+
datasets # Consider adding a version
|
81 |
+
hf-transfer>=0.1.4 # Ensure compatibility
|
|
|
|
|
|
|
|
|
|