Skip to content

Commit

Permalink
Bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
luciaquirke committed Sep 2, 2024
1 parent 507f9c4 commit 8b7dbc5
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
27 changes: 23 additions & 4 deletions .github/workflows/publish-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,41 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
include:
# 3.10
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
python-version: '3.10'
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
python-version: '3.10'
- os: macos-latest
target: x86_64-apple-darwin
python-version: '3.10'
- os: macos-latest
target: aarch64-apple-darwin
python-version: '3.10'
- os: windows-latest
target: x86_64-pc-windows-msvc
# Add ARM64 builds
python-version: '3.10'
# 3.11-
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
python-version: '3.11'
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
python-version: '3.10'
python-version: '3.11'
- os: macos-latest
target: x86_64-apple-darwin
python-version: '3.11'
- os: macos-latest
target: aarch64-apple-darwin
python-version: '3.10'
python-version: '3.11'
- os: windows-latest
target: x86_64-pc-windows-msvc
python-version: '3.11'

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "tokengrams"
description = "Compute n-gram statistics and model language over pre-tokenized text corpora used to train large language models."
license = "MIT"
version = "0.3.2"
version = "0.3.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tokengrams"
version = "0.3.2"
version = "0.3.3"
description = "Efficiently computing & storing token n-grams from large corpora "
authors = [
{ name = "Nora Belrose", email = "[email protected]" },
Expand Down

0 comments on commit 8b7dbc5

Please sign in to comment.