Skip to content

Commit

Permalink
fixing github workflow to release more wheels python 3.10-3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
TyberiusPrime committed Jan 29, 2024
1 parent 93d19f9 commit ac9e613
Showing 1 changed file with 1 addition and 40 deletions.
41 changes: 1 addition & 40 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,52 +12,13 @@ jobs:
with:
manylinux: auto
command: build
args: --release -o dist
args: --release -o dist -i python3.10 -i python3.11 -i python3.12
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

# windows:
# runs-on: windows-latest
# strategy:
# matrix:
# python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
# target: [x64, x86]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# architecture: ${{ matrix.target }}
# - name: Install Rust toolchain
# uses: dtolnay/rust-toolchain@stable
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.target }}
# args: -i python --release --out dist
# - name: Upload wheels
# uses: actions/upload-artifact@v3
# with:
# name: wheels
# path: dist

# macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - uses: messense/maturin-action@v1
# with:
# command: build
# args: --release --no-sdist -o dist --universal2
# - name: Upload wheels
# uses: actions/upload-artifact@v3
# with:
# name: wheels
# path: dist

release:
name: Release
runs-on: ubuntu-latest
Expand Down

0 comments on commit ac9e613

Please sign in to comment.