-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Specify min versions #2303
Specify min versions #2303
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
This reverts commit be02a7f.
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.
Nice work enforcing the min versions - LGTM!
python -m pip install --upgrade pip | ||
python -m pip install accelerate==0.34.0 | ||
python -m pip install datasets==2.21.0 | ||
python -m pip install transformers==4.46.0 |
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.
For my understanding, if we bump the min version in setup.py
we also need to bump it here as well 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.
That's right.
Ideally, we would be able to pip install minimal versions via, eg, pip install --prefer_min .
, but it's not possible yet, see pypa/pip#8085
What does this PR do?
This PR adds a min version for
datasets
andaccelerate
. It adds a test to ensure that these min version are indeed supported.I've found the specified min version by dichotomy.
Before submitting
Pull Request section?
to it if that's the case.
documentation guidelines.
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.