-
Notifications
You must be signed in to change notification settings - Fork 2
Improve fsspec-proxy dependency groups #4
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
base: main
Are you sure you want to change the base?
Conversation
`%APPDATA%\pip\pip.ini` (on Windows) and add: | ||
|
||
[global] | ||
extra-index-url = https://pypi.anaconda.org/anaconda-cloud/simple |
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.
It's possible to add this as a command line arg, right?
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.
Hi @martindurant, thanks for the feedback, I added a 2nd method with the CLI argument.
fsspec-proxy/pyproject.toml
Outdated
"s3fs", | ||
"anaconda-cloud-storage" |
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.
I think you can make these relative to the other groups
"s3fs", | |
"anaconda-cloud-storage" | |
".[s3]", | |
".[anaconda]" |
so that if the other groups change, we don't have to edit in two places.
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.
Unfortunately, we got a syntax error with this. I like the idea though, so I used the brand new PEP735 dependency groups feature.
It took me a little time to figure out why I was getting a Filesystem Initialization error. This PR updates the README and the dependency group names to make things more clear.