Created
February 24, 2025 19:38
-
-
Save maphew/0cb4b65777732451895b490e61d7e236 to your computer and use it in GitHub Desktop.
seeking to get `uv run` to work with gdal binary wheel
This file contains 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
# /// script | |
# requires-python = ">=3.8" | |
# dependencies = [ | |
# "gdal", | |
# ] | |
#pyproject.toml | |
#[tool.uv] | |
# find-links = ["https://girder.github.io/large_image_wheels"] | |
# /// | |
''' GDAL will fail with uv or pip install on machines that don't have a full build environment. | |
A Workaround is to use prebuilt binary wheel instead. However structuring script header | |
metadata to do this is unclear. | |
See https://github.com/astral-sh/uv/issues/11466 | |
If this script is invoked with `uv run run-gdal.py` and you see 'hi!' instead of an error, a | |
solution has been found. | |
''' | |
print('hi!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment