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 8029965 commit d2f990eCopy full SHA for d2f990e
setup.py
@@ -73,7 +73,9 @@
73
# for downloading datasets over HTTPS
74
'requests>=2.19.0',
75
# progress bars in download and scripts
76
- "tqdm >= 4.27",
+ # tqdm 4.50.0 introduced permission errors on windows
77
+ # see https://app.circleci.com/pipelines/github/huggingface/datasets/235/workflows/cfb6a39f-68eb-4802-8b17-2cd5e8ea7369/jobs/1111
78
+ "tqdm>=4.27,<4.50.0",
79
# dataclasses for Python versions that don't have it
80
"dataclasses;python_version<'3.7'",
81
# filesystem locks e.g. to prevent parallel downloads
0 commit comments