Skip to content

Commit ba555e3

Browse files
authored
CI: Fix deploy-dev and deploy-release jobs (pyodide#5766)
1 parent 34843f4 commit ba555e3

File tree

5 files changed

+2
-11
lines changed

5 files changed

+2
-11
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ jobs:
468468
cp -r cpython/installs /tmp/ghr/static-libraries
469469
cd /tmp/ghr
470470
tar cjf dist/pyodide-${CIRCLE_TAG}.tar.bz2 pyodide/
471-
tar cjf dist/pyodide-core-${CIRCLE_TAG}.tar.bz2 dist/pyodide{.js,.mjs,.asm.js,.asm.wasm} dist/*.d.ts dist/{package,pyodide-lock}.json dist/python_stdlib.zip dist/python dist/python_cli_entry.mjs
471+
tar cjf dist/pyodide-core-${CIRCLE_TAG}.tar.bz2 pyodide/pyodide{.js,.mjs,.asm.js,.asm.wasm} pyodide/*.d.ts pyodide/{package,pyodide-lock}.json pyodide/python_stdlib.zip pyodide/python pyodide/python_cli_entry.mjs
472472
tar cjf dist/xbuildenv-${CIRCLE_TAG}.tar.bz2 xbuildenv/
473473
tar cjf dist/static-libraries-${CIRCLE_TAG}.tar.bz2 static-libraries/
474474
@@ -561,7 +561,7 @@ jobs:
561561
cp -r xbuildenv /tmp/ghr/xbuildenv
562562
cp -r cpython/installs /tmp/ghr/static-libraries
563563
cd /tmp/ghr
564-
tar cjf pyodide-core.tar.gz dist/pyodide{.js,.mjs,.asm.js,.asm.wasm} dist/*.d.ts dist/{package,pyodide-lock}.json dist/python_stdlib.zip dist/python dist/python_cli_entry.mjs
564+
tar cjf dist/pyodide-core.tar.bz2 pyodide/pyodide{.js,.mjs,.asm.js,.asm.wasm} pyodide/*.d.ts pyodide/{package,pyodide-lock}.json pyodide/python_stdlib.zip pyodide/python pyodide/python_cli_entry.mjs
565565
tar cjf dist/xbuildenv.tar.bz2 xbuildenv/
566566
tar cjf dist/static-libraries.tar.bz2 static-libraries/
567567

docs/development/contributing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ To contribute code, see the following steps,
1313
1. Fork the Pyodide repository [https://github.com/pyodide/pyodide](https://github.com/pyodide/pyodide) on Github.
1414
2. If you are on Linux, you can skip this step. On Windows and MacOS you have a
1515
choice. The first option is to manually install Docker:
16-
1716
- on MacOS follow [these instructions](https://docs.docker.com/desktop/mac/install/)
1817
- on Windows, [install WSL
1918
2](https://docs.microsoft.com/en-us/windows/wsl/install), then Docker.
@@ -22,7 +21,6 @@ To contribute code, see the following steps,
2221

2322
The second option is to use a service that provides a Linux
2423
development environment, such as
25-
2624
- [Github Codespaces](https://github.com/features/codespaces)
2725
- [gitpod.io](https://gitpod.io)
2826
- or a remote Linux VM with SSH connection.

docs/development/maintainers.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Assume for concreteness that we are releasing version 0.20.0.
1616

1717
1. Make a tracking issue with a title like "0.20.0 release planning". Add the
1818
checklist:
19-
2019
- [ ] Update packages
2120
- [ ] Look for open PRs to add to the release milestone
2221
- [ ] Make sure all PRs in the release milestone are merged
@@ -310,7 +309,6 @@ If doing a major version update, save time by {ref}`updating-packages` first.
310309
3. Update the Python version in Makefile.envs
311310

312311
4. Update the Python version in the following locations:
313-
314312
- `.github/workflows/main.yml`
315313
- `docs/conf.py`
316314
- `docs/development/contributing.md`
@@ -322,7 +320,6 @@ If doing a major version update, save time by {ref}`updating-packages` first.
322320
(TODO: make this list shorter.)
323321

324322
5. Rebase the patches:
325-
326323
- Clone cpython and cd into it. Checkout the Python version you are upgrading
327324
from. For instance, if the old version is 3.11.3, use `git checkout v3.11.3`
328325
(Python tags have a leading v.) Run

docs/project/changelog.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ _July 4, 2025_
120120
{pr}`5374` {pr}`5398`
121121

122122
- {{ Enhancement }} New packages added:
123-
124123
- aiohappyeyeballs (2.6.1)
125124
- blosc2 (3.2.0)
126125
- diskcache (5.6.3)
@@ -2528,7 +2527,6 @@ _August 3rd, 2021_
25282527
### Standard library
25292528

25302529
- {{ API }} The following standard library modules are now available as standalone packages
2531-
25322530
- distlib
25332531

25342532
They are loaded by default in `loadPyodide`, however this behavior
@@ -3055,7 +3053,6 @@ _Apr 12, 2019_
30553053
**User improvements:**
30563054

30573055
- Support for built-in modules:
3058-
30593056
- `sqlite`, `crypt`
30603057

30613058
- New packages: `mne`

docs/project/deprecation-timeline.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ deprecation warnings. More details about each item can often be found in the
5454
- The default working directory (home directory) inside the Pyodide virtual file
5555
system has been changed from `/` to `/home/pyodide`. To get the previous
5656
behavior, you can
57-
5857
- call `os.chdir("/")` in Python to change working directory or
5958
- call {js:func}`~globalThis.loadPyodide` with the `homedir="/"`
6059
argument

0 commit comments

Comments
 (0)