diff --git a/.github/workflows/ykpy-ci.yml b/.github/workflows/ykpy-ci.yml index 6dc4f60..551b27c 100644 --- a/.github/workflows/ykpy-ci.yml +++ b/.github/workflows/ykpy-ci.yml @@ -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: @@ -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: diff --git a/Cargo.toml b/Cargo.toml index b0b6bea..61ce065 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/yomikomi-pyo3/Cargo.toml b/yomikomi-pyo3/Cargo.toml index 4ff11c7..82378d7 100644 --- a/yomikomi-pyo3/Cargo.toml +++ b/yomikomi-pyo3/Cargo.toml @@ -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" }