Skip to content

Revert "fix(release): bump Code Interpreter Python past PyPI collision" - #1787

Closed
mishushakov wants to merge 1 commit into
mainfrom
revert-1785-devin/1787865524-code-interpreter-pypi-clash
Closed

Revert "fix(release): bump Code Interpreter Python past PyPI collision"#1787
mishushakov wants to merge 1 commit into
mainfrom
revert-1785-devin/1787865524-code-interpreter-pypi-clash

Conversation

@mishushakov

Copy link
Copy Markdown
Member

Reverts #1785

@cla-bot cla-bot Bot added the cla-signed label Aug 27, 2026
@changeset-bot

changeset-bot Bot commented Aug 27, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: d3a6347

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@cursor

cursor Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

PR Summary

Low Risk
Only deletes a release changeset; no runtime or library code changes.

Overview
Removes the changeset that bumped @e2b/code-interpreter-python past 2.9.2 to avoid a PyPI publish check failure from a pre-migration release. That release fix from #1785 is being undone.

Reviewed by Cursor Bugbot for commit d3a6347. Bugbot is set up for automated code reviews on this repo. Configure here.

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed against TASTE.md (e2b-dev/sdk-harness). This PR's only change is removing the changeset file .changeset/code-interpreter-python-pypi-clash.md; it touches no SDK code in packages/js-sdk, packages/python-sdk, or packages/cli, so no TASTE.md principles (API shape, parity, errors, timeouts, config, docs) apply. 0 violations, no inline comments.

@github-actions

Copy link
Copy Markdown
Contributor

Package Artifacts

Built from 4e9ab2d. Download artifacts from this workflow run.

JS SDK (e2b@2.46.2-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0):

npm install ./e2b-2.46.2-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0.tgz

CLI (@e2b/cli@2.18.1-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0):

npm install ./e2b-cli-2.18.1-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0.tgz

Code Interpreter JS SDK (@e2b/code-interpreter@2.7.3-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0):

npm install ./e2b-code-interpreter-2.7.3-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0.tgz

Desktop JS SDK (@e2b/desktop@2.3.4-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0):

npm install ./e2b-desktop-2.3.4-revert-1785-devin-1787865524-code-interpreter-pypi-clash.0.tgz

Python SDK (e2b==2.46.1+revert.1785.devin.1787865524.code.interpreter.pypi.clash):

pip install ./e2b-2.46.1+revert.1785.devin.1787865524.code.interpreter.pypi.clash-py3-none-any.whl

Code Interpreter Python SDK (e2b-code-interpreter==2.9.2+revert.1785.devin.1787865524.code.interpreter.pypi.clash):

pip install ./e2b_code_interpreter-2.9.2+revert.1785.devin.1787865524.code.interpreter.pypi.clash-py3-none-any.whl

Desktop Python SDK (e2b-desktop==2.4.5+revert.1785.devin.1787865524.code.interpreter.pypi.clash):

pip install ./e2b_desktop-2.4.5+revert.1785.devin.1787865524.code.interpreter.pypi.clash-py3-none-any.whl

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: d3a63470c1

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

@@ -1,5 +0,0 @@
---
'@e2b/code-interpreter-python': patch

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Preserve the Python version bump before the next release

Deleting this changeset leaves Code Interpreter Python at 2.9.2, whose PyPI artifacts have different contents from this repository's build. In the checked .github/workflows/publish_packages.yml, pnpm run publish invokes the root publish script, which unconditionally runs every workspace's postPublish; this package therefore rebuilds 2.9.2 and calls uv publish --check-url during any subsequent release. uv publish --help describes --check-url as “Check an index URL for existing files to skip duplicate uploads”; since these files are not duplicates, the upload cannot be skipped and the release fails again. Keep a patch changeset so the artifact is published under 2.9.3.

Useful? React with 👍 / 👎.

@claude claude Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additional findings (outside the current diff — GitHub can't attach inline comments there):

  • 🔴 .changeset/code-interpreter-python-pypi-clash.md — Revert removes the only pending fix for the code-interpreter-python PyPI version collision, without any replacement changeset or manual version bump. packages/code-interpreter-python/pyproject.toml and package.json still pin version 2.9.2, which was already published to PyPI under a different checksum.

    Extended reasoning...

    Next release run executes postPublish (uv publish --token ${PYPI_TOKEN} --check-url https://pypi.org/simple/) for @ e2b/code-interpreter-python still at version 2.9.2; uv publish --check-url again fails with the local/remote sha256 mismatch that PR #1785 was created to fix, breaking the release pipeline for this package exactly as before the fix — a regression versus the base branch where the queued patch changeset would have bumped it past the collision.

    Verification: normal. The revert deletes the only pending fix and reintroduces the release-pipeline failure that the base branch (5a56c87) had healed. Root package.json:6 "publish": "pnpm changeset publish && pnpm run -r postPublish" runs postPublish recursively for every workspace package, and packages/code-interpreter-python/package.json:8 `"postPublish": "uv build && uv publish --token… | Severity:…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant