diff --git a/.github/workflows/python-sdk-release.yml b/.github/workflows/python-sdk-release.yml index ee0bc2ded..654dd8d82 100644 --- a/.github/workflows/python-sdk-release.yml +++ b/.github/workflows/python-sdk-release.yml @@ -23,11 +23,6 @@ jobs: with: persist-credentials: false - - name: Setup Python - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 - with: - python-version: "3.12" - - name: Validate tag and build Python SDK package shell: bash run: | @@ -39,14 +34,6 @@ jobs: exit 1 fi - configured_version="$( - python -c 'import tomllib; print(tomllib.load(open("sdk/python/pyproject.toml", "rb"))["project"]["version"])' - )" - if [[ "${configured_version}" != "${sdk_version}" ]]; then - echo "Tag version ${sdk_version} does not match sdk/python/pyproject.toml version ${configured_version}." - exit 1 - fi - # The pinned runtime currently publishes a musllinux Linux wheel. # Build in Alpine so release type generation installs that wheel. docker run --rm \ diff --git a/sdk/python/docs/faq.md b/sdk/python/docs/faq.md index e97329200..6fff536a7 100644 --- a/sdk/python/docs/faq.md +++ b/sdk/python/docs/faq.md @@ -10,8 +10,7 @@ After a stable release exists, pass `--pre` to opt into newer prereleases. ## Why does the SDK install a runtime package? The SDK and runtime packages are versioned independently. Each SDK release -pins one compatible runtime dependency, so `openai-codex==0.1.0b1` installs -`openai-codex-cli-bin==0.132.0` automatically. +pins and installs one compatible runtime dependency automatically. ## Thread vs turn diff --git a/sdk/python/docs/getting-started.md b/sdk/python/docs/getting-started.md index ddb743288..fb2c88b4c 100644 --- a/sdk/python/docs/getting-started.md +++ b/sdk/python/docs/getting-started.md @@ -11,12 +11,6 @@ Install the SDK: pip install openai-codex ``` -For a reproducible install of this release: - -```bash -pip install openai-codex==0.1.0b1 -``` - Requirements: - Python `>=3.10` diff --git a/sdk/python/pyproject.toml b/sdk/python/pyproject.toml index 1557e0846..9c93be69a 100644 --- a/sdk/python/pyproject.toml +++ b/sdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "openai-codex" -version = "0.1.0b1" +version = "0.0.0-dev" description = "Python SDK for Codex" readme = "README.md" requires-python = ">=3.10" diff --git a/sdk/python/tests/test_artifact_workflow_and_binaries.py b/sdk/python/tests/test_artifact_workflow_and_binaries.py index 6608cc3a4..d3f2f8d0e 100644 --- a/sdk/python/tests/test_artifact_workflow_and_binaries.py +++ b/sdk/python/tests/test_artifact_workflow_and_binaries.py @@ -239,17 +239,17 @@ def test_runtime_distribution_name_is_consistent() -> None: ) -def test_source_sdk_package_pins_published_runtime() -> None: - """The source package metadata should pin the runtime wheel that ships schemas.""" +def test_source_sdk_template_pins_published_runtime() -> None: + """The source template should carry a development version and reviewed runtime pin.""" script = _load_update_script_module() pyproject = tomllib.loads((ROOT / "pyproject.toml").read_text()) assert { - "sdk_version": pyproject["project"]["version"], + "sdk_template_version": pyproject["project"]["version"], "runtime_pin": script.pinned_runtime_version(), "dependencies": pyproject["project"]["dependencies"], } == { - "sdk_version": "0.1.0b1", + "sdk_template_version": "0.0.0-dev", "runtime_pin": "0.132.0", "dependencies": [ "pydantic>=2.12", @@ -319,7 +319,7 @@ def test_runtime_setup_reads_independent_runtime_pin_and_release_tags() -> None: assert { "package_name": runtime_setup.PACKAGE_NAME, - "sdk_version": pyproject["project"]["version"], + "sdk_template_version": pyproject["project"]["version"], "runtime_pin": runtime_setup.pinned_runtime_version(), "normalized_release_version": runtime_setup._normalized_package_version( "rust-v0.116.0-alpha.1" @@ -327,7 +327,7 @@ def test_runtime_setup_reads_independent_runtime_pin_and_release_tags() -> None: "release_tag": runtime_setup._release_tag("0.116.0a1"), } == { "package_name": "openai-codex-cli-bin", - "sdk_version": "0.1.0b1", + "sdk_template_version": "0.0.0-dev", "runtime_pin": "0.132.0", "normalized_release_version": "0.116.0a1", "release_tag": "rust-v0.116.0-alpha.1", diff --git a/sdk/python/uv.lock b/sdk/python/uv.lock index 8807f4f59..6d9e40e37 100644 --- a/sdk/python/uv.lock +++ b/sdk/python/uv.lock @@ -282,7 +282,7 @@ wheels = [ [[package]] name = "openai-codex" -version = "0.1.0b1" +version = "0.0.0.dev0" source = { editable = "." } dependencies = [ { name = "openai-codex-cli-bin" },