-
Notifications
You must be signed in to change notification settings - Fork 92
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
Fix lightning
and torch._dynamo
#5984
Conversation
E2E Tests 🚀 |
@@ -8,6 +8,7 @@ hvplot==0.8.0 ; python_version < '3.9' | |||
ibis-framework[duckdb]==9.5.0; python_version >= '3.10' | |||
ipykernel==6.29.5 | |||
ipywidgets==8.1.5 | |||
lightning==2.5.0.post0 |
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.
we do some tests on Python 3.8 still, and it looks like the last version where lightning
supported 3.8 is 2.3.2
. I'd like to keep some 3.8 tests, but I think it's okay to have them just be the nightly ones.
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.
Ah good point. I've updated to support Python 3.8
Addresses #5879. I confirmed that the test fails before pinning
typing-extensions
.I haven't dug further into why this happens or how to fix it at the level of
typing-extensions
. We may need to do that in future if we encounter this again.Note that this PR also updated a few other vendored packages. The
pygments
update required a tiny change to one of our Help-related tests.Release Notes
New Features
Bug Fixes
torch._dynamo
, and thereforelightning
(Positron can't load lightning in Python 3.11.10 #5879).QA Notes
Try to
import lightning
in a Python console. Note that you will have to rerunnpm install
in thepositron-python
extension to install the new vendored package versions.