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

Update Pyodide package bundle to 20240819.1 #2556

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build/pyodide_bucket.bzl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Do not edit this file by hand. See docs/pyodide.md for info on how to generate it.
# These variables are factored out here because they are being shared by the WORKSPACE files in
# both edgeworker and workerd, as well as src/pyodide/BUILD.bazel
PYODIDE_PACKAGE_BUCKET_URL = "https://pyodide-packages.runtime-playground.workers.dev/20240513.2/"
PYODIDE_GITHUB_RELEASE_URL = "https://github.com/cloudflare/pyodide-build-scripts/releases/download/20240513.2/"
PYODIDE_LOCK_SHA256 = "51eb3fd8dae5f551e2393ac58edfaf6a6c8d9c51b39c1584dd5d74bd7fb803fc"
PYODIDE_PACKAGES_TAR_ZIP_SHA256 = "b71d4c3cee3b6bd12969a788545f4159fb1eb984a7ca5de2493c4fa8479beeec"
PYODIDE_ALL_WHEELS_ZIP_SHA256 = "c17feb45fdcb4b41eab9c719e69c9e062a8fc88344fcb6bbd7de0de92c3ae660"
PYODIDE_PACKAGE_BUCKET_URL = "https://pyodide.edgeworker.net/python-package-bucket/20240819.1/"
PYODIDE_GITHUB_RELEASE_URL = "https://github.com/cloudflare/pyodide-build-scripts/releases/download/20240819.1/"
PYODIDE_LOCK_SHA256 = "87dc2f9682d4f109c056dd4f8d27b8d5e9ff1d08e7e15347c65135c3c57cc7e0"
PYODIDE_PACKAGES_TAR_ZIP_SHA256 = "43d1d8c6d151971729f570a2689277d3a59c17ad6c388579666353d369f6870d"
PYODIDE_ALL_WHEELS_ZIP_SHA256 = "7ced387b64ca5d8c7078e1b619b33f9ac39f0a54335fd58b3d7050f8d7fa38ad"

# IMPORTANT: when updating this file in git, check the diff to make sure none of the imports below are being removed unexpectedly
PYODIDE_IMPORTS_TO_TEST = {
Expand Down
2 changes: 1 addition & 1 deletion src/workerd/server/tests/python/import_tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def gen_import_tests(to_test):

py_wd_test(
src = wd_test_fname,
args = ["--experimental", "--pyodide-package-disk-cache-dir", "../all_pyodide_wheels"],
args = ["--experimental"], #, "--pyodide-package-disk-cache-dir", "../all_pyodide_wheels"],
data = [worker_py_fname, "@all_pyodide_wheels//:whls"],
tags = ["slow"],
size = "enormous",
Expand Down
Loading