-
Notifications
You must be signed in to change notification settings - Fork 261
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
feat: uv support, py 3.13 #1216
Conversation
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.
I mean this looks pretty good to me! Wanna add some tests and a release label?
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.
Looking good! Agree with @JakeCooper about adding an example (examples/python-uv
) to test the plan generation for this update
5b8f9c1
to
fbbfc40
Compare
- Changed the PYTHON_NIXPKGS_ARCHIVE to a new hash. - Updated PostgreSQL package to require the .dev variant for compatibility with psycopg2. - Added comments to clarify the changes for future reference.
7dfb70b
to
27d6f6d
Compare
- Add `snapshot_kind: text` to snapshots - Change `postgresql` to `postgresql.dev` in dependencies
Alright, build is finally passing here. I needed to make some additional updates to properly support the latest nixpkgs version (which included py 3.13). |
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.
Thanks for this feature and uv support! What additional updates do you need to make?
// the python package is extracted from pyproject.toml, but this can often not be the desired entrypoint | ||
// for this reason we prefer main.py to the module heuristic used in the pyproject.toml logic |
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.
This is nice 👍
Nothing else! We are good to go on this one. |
Curious what you think of this approach to supporting uv. Happy to add some tests for this as well, wanted to check on the approach before I built out the tests.
Fixes: #1128