Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin fsspec for python 3.7 #1191

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@
}

if sys.version_info < (3, 8):
extras_require['tests'] += ["hdf5 ==1.12.1"] # To be able to solve on mamba
extras_require['tests'] += [
"fsspec ==2023.1", # Bad conda-forge fsspec 2023.3.0 release
"hdf5 ==1.12.1", # To be able to solve on mamba
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PyPI build is currently failing as hdf5 is not a Python package available on PyPI.

]

extras_require['doc'] = extras_require['examples_extra'] + [
'nbsite >=0.7.1',
Expand Down