Skip to content

Commit

Permalink
fix python workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lips7 committed Jul 8, 2024
1 parent d5ddc74 commit c07b92e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ jobs:
target: x86_64
- runner: ubuntu-latest
target: aarch64
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
Expand Down Expand Up @@ -62,14 +61,13 @@ jobs:
target: x86_64
- runner: ubuntu-latest
target: aarch64
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
Expand All @@ -96,14 +94,13 @@ jobs:
platform:
- runner: windows-latest
target: x64
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
Expand Down Expand Up @@ -131,14 +128,13 @@ jobs:
target: x86_64
- runner: macos-14
target: aarch64
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
allow-prereleases: true
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
Expand Down
1 change: 0 additions & 1 deletion matcher_py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
"Programming Language :: Rust",
"Typing :: Typed",
Expand Down

0 comments on commit c07b92e

Please sign in to comment.