Skip to content

Commit 8b7dbc5

Browse files
committed
Bump package version
1 parent 507f9c4 commit 8b7dbc5

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

.github/workflows/publish-wheel.yml

+23-4
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,41 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: [ubuntu-latest, macos-latest, windows-latest]
1211
python-version: ['3.10', '3.11']
12+
os: [ubuntu-latest, macos-latest, windows-latest]
1313
include:
14+
# 3.10
1415
- os: ubuntu-latest
1516
target: x86_64-unknown-linux-gnu
17+
python-version: '3.10'
18+
- os: ubuntu-latest
19+
target: aarch64-unknown-linux-gnu
20+
python-version: '3.10'
1621
- os: macos-latest
1722
target: x86_64-apple-darwin
23+
python-version: '3.10'
24+
- os: macos-latest
25+
target: aarch64-apple-darwin
26+
python-version: '3.10'
1827
- os: windows-latest
1928
target: x86_64-pc-windows-msvc
20-
# Add ARM64 builds
29+
python-version: '3.10'
30+
# 3.11-
31+
- os: ubuntu-latest
32+
target: x86_64-unknown-linux-gnu
33+
python-version: '3.11'
2134
- os: ubuntu-latest
2235
target: aarch64-unknown-linux-gnu
23-
python-version: '3.10'
36+
python-version: '3.11'
37+
- os: macos-latest
38+
target: x86_64-apple-darwin
39+
python-version: '3.11'
2440
- os: macos-latest
2541
target: aarch64-apple-darwin
26-
python-version: '3.10'
42+
python-version: '3.11'
43+
- os: windows-latest
44+
target: x86_64-pc-windows-msvc
45+
python-version: '3.11'
2746

2847
runs-on: ${{ matrix.os }}
2948
steps:

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tokengrams"
33
description = "Compute n-gram statistics and model language over pre-tokenized text corpora used to train large language models."
44
license = "MIT"
5-
version = "0.3.2"
5+
version = "0.3.3"
66
edition = "2021"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tokengrams"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "Efficiently computing & storing token n-grams from large corpora "
55
authors = [
66
{ name = "Nora Belrose", email = "[email protected]" },

0 commit comments

Comments
 (0)