chore(build): migrate to uv - #3653
Merged
Merged
Conversation
apcha-oai
marked this pull request as ready for review
August 19, 2026 14:30
Contributor
OkTest Summary❌ Failed for Python SDK PR #3653. SDK merge ( |
apcha-oai
enabled auto-merge
August 19, 2026 14:30
This was referenced Aug 19, 2026
jbeckwith-oai
approved these changes
Aug 19, 2026
jbeckwith-oai
left a comment
Contributor
There was a problem hiding this comment.
Reviewed the complete Rye-to-uv migration across all 35 changed files. Verified the authoritative uv lock and release marker, Python 3.10-3.14 and isolated Pydantic v1/v2 compatibility, unchanged runtime extras/security floors, hashed build dependencies, protected upload-only PyPI Trusted Publishing, SHA-pinned Actions, Dependabot policy, package contents, contributor tooling, and regression coverage. All required checks pass. No actionable findings.
Merged
pull Bot
pushed a commit
to moqimoqidea/openai-python
that referenced
this pull request
Aug 19, 2026
# Summary This is part of a series to reduce the SDK’s dependency surface where a small, purpose-built alternative is sufficient. - Replace the general-purpose JSON Schema dependency with explicit checks for our small, checked-in Bedrock authentication fixture. - Keep the shared schema as the contract, and fail if it changes beyond what the manual checks cover. - Remove four development packages (`jsonschema`, `jsonschema-specifications`, `referencing`, and `rpds-py`), reducing the development dependency graph from 79 to 75 distributions. Runtime dependencies are unchanged. ## Stack - openai#3653 (merged) - openai#3654 👈 this PR - openai#3655 - openai#3656
pull Bot
pushed a commit
to gitupdates/openai-python
that referenced
this pull request
Aug 19, 2026
# Summary This is part of a series to reduce the SDK’s dependency surface where a small, purpose-built alternative is sufficient. - Replace `hatch-fancy-pypi-readme` with a small repository-owned Hatch metadata hook for our existing relative-link rewrite. - Preserve the README published in package metadata, including when a wheel is built from the source distribution. - Reduce the isolated build dependency graph from seven to six distributions across supported Python versions. Runtime and development dependencies are unchanged. ## Stack - openai#3653 (merged) - openai#3654 (merged) - openai#3655 👈 this PR - openai#3656
pull Bot
pushed a commit
to gitupdates/openai-python
that referenced
this pull request
Aug 19, 2026
# Summary This is part of a series to reduce the SDK’s dependency surface where a small, purpose-built alternative is sufficient. - Replace `distro` with Python’s standard OS-release lookup for the diagnostic platform header. - Preserve mobile detection, recognize FreeBSD and OpenBSD directly, and fall back to `Linux` if OS-release information is unavailable. - Matching `distro`’s exact behavior is explicitly a non-goal. This header only needs to be close enough for our analytics purposes; we prefer removing the dependency over reproducing its full distribution-detection and fallback behavior. - Remove one runtime dependency: the default graph goes from 15 to 14 distributions, and the all-extras graph from 37 to 36. No remaining dependency versions change. ## Stack - openai#3653 (merged) - openai#3654 (merged) - openai#3655 (merged) - openai#3656 👈 this PR
pull Bot
pushed a commit
to tooniez/openai-python
that referenced
this pull request
Aug 19, 2026
Automated Release PR --- ## [3.3.1](openai/openai-python@v3.3.0...v3.3.1) (2026-08-19) ### Bug Fixes * **deps:** update dependencies with published security fixes ([openai#3680](openai#3680)) ([53aa4fc](openai@53aa4fc)) ### Chores * **build:** migrate to uv ([openai#3653](openai#3653)) ([b37e85d](openai@b37e85d)) * **deps:** remove jsonschema and unused fixture-validation dependencies ([0dfdfdd](openai@0dfdfdd)) * lock the repository Pyright toolchain ([openai#3678](openai#3678)) ([3079be2](openai@3079be2)) * run the mock server from locked local tooling ([openai#3679](openai#3679)) ([370fcc6](openai@370fcc6)) ### Refactors * **deps:** use the standard library for platform detection ([d5b0065](openai@d5b0065)) ### Build System * replace the external README metadata hook ([e673ca8](openai@e673ca8)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: openai-sdks[bot] <284451331+openai-sdks[bot]@users.noreply.github.com>
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
Rye is no longer maintained. Moving to its maintained successor, uv.
scripts/*commands and both Pydantic compatibility lanes, while makinguv.lockthe source of truth.There is no SDK API or Python-support change. Pyright's installation path and unrelated dependency upgrades remain separate follow-ups.