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
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ commands:
steps:
- run:
name: pip install
command: << parameters.python >> -m pip install -r requirements-dev.txt
# The --only-binary :all: flag tells python not to ever build any
# extensio code locally, and instead only download pre-built wheels.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Suggested change
# extensio code locally, and instead only download pre-built wheels.
# extension code locally, and instead only download pre-built wheels.

command: "<< parameters.python >> -m pip install --only-binary :all: -r requirements-dev.txt"
install-rust:
steps:
- run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
which python3
python3 --version
python3 -m pip install -r requirements-dev.txt
python3 -m pip install --only-binary :all: -r requirements-dev.txt
- name: Check test expectations on target branch
# Skip this step for rebaseline PRs, since the target branch is expected
# to be out of date in this case.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebaseline-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
which python3
python3 --version
python3 -m pip install -r requirements-dev.txt
python3 -m pip install --only-binary :all: -r requirements-dev.txt
- name: Rebaseline tests
env:
REF_NAME: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roll-emsdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
which python3
python3 --version
python3 -m pip install -r requirements-dev.txt
python3 -m pip install --only-binary :all: -r requirements-dev.txt
- name: Roll emsdk and rebaseline tests
env:
REF_NAME: ${{ github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
which python3
python3 --version
python3 -m pip install -r requirements-dev.txt
python3 -m pip install --only-binary :all: -r requirements-dev.txt
- name: Update docs
run: |
set -o errexit
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# the codebase and generate docs using Sphinx, not for users of emscripten.
# Install with `pip3 install -r requirements-dev.txt`

coverage[toml]==6.5
coverage[toml]==7.15.0
mypy==1.14
psutil==7.0.0
ruff==0.15.7
Expand Down