Remove cuda-tile-experimental URL dep for PyPI compatibility#95
Merged
hannahli-nv merged 4 commits intomainfrom Apr 3, 2026
Merged
Remove cuda-tile-experimental URL dep for PyPI compatibility#95hannahli-nv merged 4 commits intomainfrom
hannahli-nv merged 4 commits intomainfrom
Conversation
PyPI rejects wheels with direct URL dependencies in Requires-Dist metadata. Comment out cuda-tile-experimental from requirements.txt (it is not published to PyPI) and document it as a manual install step in README.md. Also update CUDA version references from 13.1 to 13.1+ since both 13.1 and 13.2 are supported. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Show a helpful warning with install instructions on `import tilegym` if cuda-tile-experimental is not installed, rather than letting users hit a cryptic ModuleNotFoundError later. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Since the barrel import in ops/cutile/__init__.py eagerly loads all kernel modules, missing cuda-tile-experimental will crash anyway. Raise a clear ImportError with install instructions up front instead of a warning followed by a cryptic ModuleNotFoundError. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Since cuda-tile-experimental is no longer in requirements.txt (removed for PyPI compatibility), explicitly install it from source in both the wheel (CI) and source (dev) Docker stages. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Collaborator
Author
|
/ok to test a96a96a |
azazhu
approved these changes
Apr 3, 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
cuda-tile-experimentaldirect URL dependency fromrequirements.txtso the wheel metadata passes PyPI validation (PyPI rejectsRequires-Distentries with URL references)cuda-tile-experimentalas a manual install step in README.md with a visible callout blockContext
The
cuda-tile-experimentalpackage is intentionally not published to PyPI by the CUDA Tile team, so it must be removed from wheel metadata and installed separately from source.Test plan
pip install .succeeds without errors (cuda-tile-experimental no longer in install_requires)python -c "import tilegym"works (no import-time dependency on cuda-tile-experimental)CI Configuration
🤖 Generated with Claude Code