Skip to content

Commit

Permalink
Switch to maturin main
Browse files Browse the repository at this point in the history
Maturing currently can't auto-detect python 3.13 from the environment in
the v1 release. Until that change has been added to v1, or a future
release, we need to switch directly to the main branch.
  • Loading branch information
JacobCallahan committed Oct 12, 2024
1 parent 99945d3 commit 665558f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
with:
command: sdist
args: --out dist
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
check-latest: true
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig/"
OPENSSL_NO_VENDOR: 1
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
check-latest: true
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig/"
with:
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
allow-prereleases: true
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
OPENSSL_DIR: C:\Program Files\OpenSSL-Win64
OPENSSL_STATIC: 1
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Set OPENSSL_DIR
run: echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
with:
command: sdist
args: --out dist
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
check-latest: true
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig/"
OPENSSL_NO_VENDOR: 1
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
check-latest: true
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig/"
with:
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
allow-prereleases: true
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
OPENSSL_DIR: C:\Program Files\OpenSSL-Win64
OPENSSL_STATIC: 1
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- name: Set OPENSSL_DIR
run: echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
subject-path: 'wheels-*/*'
- name: Publish to PyPI
if: "startsWith(github.ref, 'refs/tags/')"
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/weekly_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
with:
command: sdist
args: --out dist
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
check-latest: true
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig/"
OPENSSL_NO_VENDOR: 1
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
check-latest: true
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
PKG_CONFIG_PATH: "/usr/share/miniconda/lib/pkgconfig/"
with:
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
allow-prereleases: true
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
env:
OPENSSL_DIR: C:\Program Files\OpenSSL-Win64
OPENSSL_STATIC: 1
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
- name: Set OPENSSL_DIR
run: echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
- name: Build wheels
uses: PyO3/maturin-action@v1
uses: PyO3/maturin-action@master
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
Expand Down

0 comments on commit 665558f

Please sign in to comment.