fix: correct stale open3d-python PyPI name, add py3.13 marker - #78
Merged
Conversation
The `open3d` extra pointed at `open3d-python`, an abandoned package last released as 0.7.0.0 -- the real, actively maintained package is just `open3d` (currently 0.19.0). Also add a `python_version < '3.13'` marker since open3d doesn't ship 3.13 wheels yet, so `[open3d]` and `[all]` resolve cleanly across the full supported Python range instead of failing outright on 3.13. Fixes part of #46 (package name + marker); CI matrix wiring for the open3d-supported Python legs is left for a follow-up.
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Duplication | 0 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
This was referenced Aug 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
open3dextra declaredopen3d-python, an abandoned package (last released as 0.7.0.0) — the real, actively maintained package is justopen3d(currently 0.19.0). Fixed the extra and every user-facing error/docstring that told people topip install open3d-python.python_version < '3.13'marker to theopen3dextra (and its copy inall), since open3d doesn't ship 3.13 wheels yet —pip install machinevision-toolbox-python[open3d]/[all]now resolves cleanly across the full supported Python range instead of failing outright on 3.13.Partial fix for #46 (package name + marker). CI matrix wiring to actually test against open3d on its supported Python legs is left as a follow-up, per the issue's own scope.
Test plan
pip install machinevision-toolbox-python[open3d]on Python 3.12 installs real open3d 0.19.x, not the 0.7.0.0 fossilpip install machinevision-toolbox-python[open3d]on Python 3.13 resolves without error (open3d simply excluded)pip install machinevision-toolbox-python[all]behaves the same way