-
Notifications
You must be signed in to change notification settings - Fork 39
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
Move fiona to be installed from conda forge #987
Conversation
I have just checked and this PR fixed this issue mentioned above. Thanks for looking into this @valeriupredoi 👍 |
brilliant, cheers Remi! can you pls approve so we get it merged and cherrypicked in the release? 🍺 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @valeriupredoi 👍
@@ -32,9 +32,6 @@ | |||
'install': [ | |||
'cf-units', | |||
'dask[array]', | |||
# fiona: 1.8.18/py39, they seem weary to build manylinux wheels | |||
# so we may have to install from conda-forge in the future | |||
'fiona', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The list in setup.py lists all dependencies, regardless of how they're installed. Could you put fiona back here @valeriupredoi? If it's installed by conda already, pip won't try to install it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aha will do now!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#990 pls approve so we merge and release the fiona baby
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cheers for pointing out and reviewing, bud!
* added fiona as dep * removed fiona as pypi dep
fiona
is again giving us headaches, the reason why I am moving it to be aconda-forge
dependency instead of PyPi is in this comment as a result of @remi-kazeroni noticing fiona trying to read an old csv file from GDAL that has disappeared from GDAL>=3.1 and asking us about it in this comment, also an issue documented here Toblerity/Fiona#897 (towards the bottom)