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

fix emscripten wheels #771

Merged
merged 1 commit into from
Sep 7, 2024
Merged
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 .github/workflows/python-core-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Wheel builds for Python libraries that are pure-Rust with no complex
# dependencies (no C dependencies, no http fetching deps)
name: Python wheels (core)
name: Python wheels (non-io)

on:
push:
Expand Down Expand Up @@ -175,6 +175,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- run: |
echo RUSTFLAGS="-Zinline-mir=no" >> $GITHUB_ENV
- run: pip install pyodide-build
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python-io-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.x
architecture: x64

- name: Build wheels
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v4
# with:
# python-version: 3.8
# python-version: 3.x

# - name: Build wheels
# uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.x
architecture: ${{ matrix.target }}

- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v4
# with:
# python-version: 3.8
# python-version: 3.x
# architecture: x64

# - name: Build wheels
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

# - uses: actions/setup-python@v4
# with:
# python-version: 3.8
# python-version: 3.x

# - name: Build wheels
# uses: PyO3/maturin-action@v1
Expand Down
Loading