-
Notifications
You must be signed in to change notification settings - Fork 24
Support Python 3.13 #15
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -62,7 +62,7 @@ description = "Connectome and task-constrained vision models of the fruit fly." | |||||||||
| dynamic = ["version"] | ||||||||||
| name = "flyvis" | ||||||||||
| readme = "readme.md" | ||||||||||
| requires-python = ">=3.9,<3.13" | ||||||||||
| requires-python = ">=3.9,<3.14" | ||||||||||
|
||||||||||
|
|
||||||||||
| [project.optional-dependencies] | ||||||||||
| dev = [ | ||||||||||
|
|
@@ -93,7 +93,7 @@ docs = [ | |||||||||
| examples = ["jupyter", "tabulate", "tqdm", "ipywidgets"] | ||||||||||
|
|
||||||||||
| pretrained = [ | ||||||||||
| "numba==0.55.2", | ||||||||||
| "numba==0.61.2", | ||||||||||
|
||||||||||
| "matplotlib==3.7.1", | ||||||||||
| "scikit-learn==1.1.1", | ||||||||||
|
Comment on lines
97
to
98
|
||||||||||
| "matplotlib==3.7.1", | |
| "scikit-learn==1.1.1", | |
| "matplotlib==3.9.0", | |
| "scikit-learn==1.4.2", |
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 PR description mentions that "slow tests" could not be fully run. Before merging Python 3.13 support, it's important to verify that the slow tests (marked with the "slow" marker as seen in pyproject.toml line 153) pass with the new numba version. These tests may exercise numba-JIT compiled code paths that could have compatibility issues with the version upgrade from 0.55.2 to 0.61.2. Consider running the full test suite including slow tests, or document any known limitations with Python 3.13 support.