-
Notifications
You must be signed in to change notification settings - Fork 293
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
Add py311 support #303
Add py311 support #303
Conversation
Codecov ReportPatch and project coverage have no change.
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #303 +/- ##
=======================================
Coverage 39.81% 39.81%
=======================================
Files 10 10
Lines 751 751
=======================================
Hits 299 299
Misses 452 452 ☔ View full report in Codecov by Sentry. |
setup.py
Outdated
"scikit-learn>=1.1.3,<2;python_version>='3.10'", | ||
"torch>=1.8.0;python_version<'3.10'", | ||
"torch>=1.11.0;python_version>='3.10'", | ||
"torch>=1.11.0;python_version=='3.10'", |
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.
what happens if the python version is 3.10.x? does it fall under this line or the next one?
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 did some testing and I think 3.10.x == 3.10
. We could put it as a range if we want to be extra sure though.
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 this looks good!
06ee2b8
to
ad511be
Compare
Resolve #296.