Skip to content

Commit

Permalink
Update to 0.3.1, remove windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentMazare committed Dec 4, 2024
1 parent fadd336 commit ad329fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 26 deletions.
25 changes: 1 addition & 24 deletions .github/workflows/ykpy-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,6 @@ jobs:
name: wheels
path: dist

windows:
runs-on: windows-latest
strategy:
matrix:
target: [x64, x86]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path yomikomi-pyo3/Cargo.toml
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

macos:
runs-on: macos-latest
strategy:
Expand Down Expand Up @@ -106,7 +83,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
needs: [linux, macos, sdist]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Dataloader for training large text models."
repository = "https://github.com/kyutai-labs/yomikomi"
Expand Down
2 changes: 1 addition & 1 deletion yomikomi-pyo3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ crate-type = ["cdylib"]
[dependencies]
numpy = "0.22.0"
pyo3 = "0.22.0"
yomikomi = { path = "../yomikomi", version = "0.3.0" }
yomikomi = { path = "../yomikomi", version = "0.3.1" }

0 comments on commit ad329fb

Please sign in to comment.