Skip to content
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

uv appears to be working with 3.13t #97

Open
jimkring opened this issue Oct 16, 2024 · 5 comments
Open

uv appears to be working with 3.13t #97

jimkring opened this issue Oct 16, 2024 · 5 comments

Comments

@jimkring
Copy link
Contributor

I noticed in this post: actions/setup-python#771 (comment)

@henryiii
Copy link
Contributor

Yes, uv python install 3.13t supports it (specifically python-build-standalone added it, which is what hatch, pdm, etc use too, and then uv added support for requesting it). uv itself has supported it since something like March.

@jimkring
Copy link
Contributor Author

Thanks for confirming @henryiii

@ngoldbaum
Copy link
Collaborator

I think I'm sold on wholesale switching to it. See numpy/numpy#27581 for part of the work to do this for NumPy.

@jimkring
Copy link
Contributor Author

@ngoldbaum I've been using uv pretty extensively in all my project and have had great success with it. It seems others in the community are having similarly positive experiences with it, too.

Side note, one of the things I've been LOVING about uv is that it supports editable local packages sources (e.g. local git submodules or vendored/copied package sources, which I sometimes prefer over git+https:// remote package sources)

# pyproject.toml
[project]
dependencies = [
  "my-package-source",  # see below for local source code location.
]

[tool.uv.sources]
# this is like `cd submodules/my-package-source && pip install -e .`
my-package-source = { path = "submodules/my-package-source", editable = true }

@ngoldbaum
Copy link
Collaborator

I'm a little less enthusiastic about uv as a setup-python replacement today: numpy/numpy#27581 (comment)

But I think we can still suggest it so people can install free-threaded Python on CI in a uniform way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants