Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[resolve]" --group test
pip install . --group test

- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ pyodide-build/
python -m venv .venv
source .venv/bin/activate

# Install in editable mode with test and resolve dependencies
pip install -e ".[test,resolve]"
# Install in editable mode with test dependencies
pip install -e ".[test]"

# Run unit tests (excludes integration tests)
pytest pyodide_build -m "not integration"
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.35.0] - 2026/06/XX

### Removed

- `pyodide build` no longer supports building from a URL or a PyPI requirement
specifier, building from a `requirements.txt` file (`-r`/`--requirements`), or
fetching and building dependencies (`--build-dependencies`,
`--output-lockfile`, `--skip-dependency`, `--skip-built-in-packages`,
`--compression-level`). It now only builds a local source directory (or the
current working directory), matching the behavior of `pypa/build`.
We have supported these features as PyPI didn't support Emscripten wheels,
but now that cross-compiled wheels can be uploaded to PyPI, each package
should be built independently and uploaded to PyPI.

## [0.34.5] - 2026/05/20

### Added
Expand Down
Loading