-
Notifications
You must be signed in to change notification settings - Fork 3
CHANGED: bumped to py3.13 #87
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
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 | ||||
|---|---|---|---|---|---|---|
| @@ -1,34 +1,35 @@ | ||||||
| [project] | ||||||
| name = "openDVP" | ||||||
| version = "0.7.2" | ||||||
| version = "0.7.3" | ||||||
| description = "open-sourced Deep Visual Proteomics toolkit" | ||||||
| readme = "README.md" | ||||||
| requires-python = ">=3.11, <3.13" | ||||||
| requires-python = ">=3.11, <3.14" | ||||||
| license = {file = "LICENSE"} | ||||||
| authors = [{name = "Jose Nimo", email = "jose.nimo@mdc-berlin.de"}] | ||||||
| maintainers = [{ name = "Jose Nimo", email = "jose.nimo@mdc-berlin.de" }] | ||||||
|
|
||||||
| dependencies = [ | ||||||
| "spatialdata == 0.4.0", | ||||||
| "numpy >= 2.0.0", | ||||||
| "spatialdata >= 0.4.0", | ||||||
| "napari-spatialdata == 0.5.5", | ||||||
| "spatialdata-plot ~= 0.2.9 ", | ||||||
| "ipykernel ~= 6.25", | ||||||
| "scanpy >=1.11, <1.14", | ||||||
| "loguru ~= 0.7.3", | ||||||
| "scipy <1.13", # Gensim breaks above | ||||||
| "scipy ~= 1.13", | ||||||
|
||||||
| "scipy ~= 1.13", | |
| "scipy <1.13", # Gensim breaks above 1.13 |
Copilot
AI
Oct 18, 2025
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 gensim version was updated from >=4.3.2 to ~=4.4.0, and the comment 'Gensim breaks with python >=3.13' was removed. Verify that gensim 4.4.0 actually supports Python 3.13, as the comment removal suggests this was a blocker for Python 3.13 support.
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 dependency constraint for
spatialdatawas changed from exact version (==) to minimum version (>=), which may introduce breaking changes. Since the previous version was pinned to0.4.0, consider using a pessimistic constraint like~= 0.4.0to allow patch updates while preventing breaking minor version changes.