boabem 0.2.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {boabem-0.2.0 → boabem-0.3.1}/.github/workflows/release.yml +24 -11
- {boabem-0.2.0 → boabem-0.3.1}/.github/workflows/test.yml +4 -2
- {boabem-0.2.0 → boabem-0.3.1}/.pre-commit-config.yaml +3 -3
- boabem-0.3.1/Cargo.lock +3514 -0
- {boabem-0.2.0 → boabem-0.3.1}/Cargo.toml +19 -18
- {boabem-0.2.0 → boabem-0.3.1}/PKG-INFO +3 -3
- {boabem-0.2.0 → boabem-0.3.1}/noxfile.py +1 -1
- {boabem-0.2.0 → boabem-0.3.1}/pyproject.toml +45 -45
- {boabem-0.2.0 → boabem-0.3.1}/src/hebi.rs +38 -36
- {boabem-0.2.0 → boabem-0.3.1}/tests/main_test.py +45 -0
- boabem-0.2.0/Cargo.lock +0 -2137
- {boabem-0.2.0 → boabem-0.3.1}/.github/dependabot.yml +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/.gitignore +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/LICENSE-APACHE +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/LICENSE-MIT +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/README.md +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/python/boabem/__init__.py +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/python/boabem/boabem.pyi +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/python/boabem/py.typed +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/src/lib.rs +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/tests/__init__.py +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/tests/conversion_test.py +0 -0
- {boabem-0.2.0 → boabem-0.3.1}/tests/intl_test.py +0 -0
|
@@ -20,43 +20,53 @@ jobs:
|
|
|
20
20
|
- os: ubuntu-latest
|
|
21
21
|
manylinux: auto
|
|
22
22
|
target: x86_64-unknown-linux-gnu
|
|
23
|
-
args: --out dist
|
|
23
|
+
args: --out dist --zig
|
|
24
|
+
interpreter: 3.10 3.14t pypy3.11 graalpy3.11 graalpy3.12
|
|
24
25
|
- os: ubuntu-24.04-arm
|
|
25
26
|
manylinux: auto
|
|
26
27
|
target: aarch64-unknown-linux-gnu
|
|
27
|
-
args: --out dist
|
|
28
|
+
args: --out dist --zig
|
|
29
|
+
interpreter: 3.10 3.14t pypy3.11 graalpy3.11 graalpy3.12
|
|
28
30
|
- os: ubuntu-latest
|
|
29
31
|
manylinux: auto
|
|
30
32
|
target: riscv64gc-unknown-linux-gnu
|
|
31
33
|
args: --out dist
|
|
34
|
+
interpreter: 3.10 3.14t
|
|
32
35
|
- os: ubuntu-latest
|
|
33
36
|
manylinux: musllinux_1_2
|
|
34
37
|
target: x86_64-unknown-linux-musl
|
|
35
38
|
args: --out dist
|
|
39
|
+
interpreter: 3.10 3.14t
|
|
36
40
|
- os: ubuntu-24.04-arm
|
|
37
41
|
manylinux: musllinux_1_2
|
|
38
42
|
target: aarch64-unknown-linux-musl
|
|
39
43
|
args: --out dist
|
|
44
|
+
interpreter: 3.10 3.14t
|
|
40
45
|
- os: ubuntu-latest
|
|
41
46
|
manylinux: musllinux_1_2
|
|
42
47
|
target: riscv64gc-unknown-linux-musl
|
|
43
48
|
args: --out dist --zig
|
|
49
|
+
interpreter: 3.10 3.14t
|
|
44
50
|
- os: macos-latest
|
|
45
51
|
manylinux: auto
|
|
46
52
|
target: x86_64-apple-darwin
|
|
47
53
|
args: --out dist
|
|
54
|
+
interpreter: 3.10 3.14t
|
|
48
55
|
- os: macos-latest
|
|
49
56
|
manylinux: auto
|
|
50
57
|
target: aarch64-apple-darwin
|
|
51
58
|
args: --out dist
|
|
59
|
+
interpreter: 3.10 3.14t pypy3.11 graalpy3.11 graalpy3.12
|
|
52
60
|
- os: windows-latest
|
|
53
61
|
manylinux: auto
|
|
54
62
|
target: x86_64-pc-windows-msvc
|
|
55
63
|
args: --out dist
|
|
64
|
+
interpreter: 3.10 3.14t pypy3.11
|
|
56
65
|
- os: windows-11-arm
|
|
57
66
|
manylinux: auto
|
|
58
67
|
target: aarch64-pc-windows-msvc
|
|
59
68
|
args: --out dist
|
|
69
|
+
interpreter: 3.10 3.14t
|
|
60
70
|
|
|
61
71
|
defaults:
|
|
62
72
|
run:
|
|
@@ -64,7 +74,10 @@ jobs:
|
|
|
64
74
|
|
|
65
75
|
steps:
|
|
66
76
|
- uses: hustcer/setup-nu@v3
|
|
67
|
-
- uses: actions/checkout@
|
|
77
|
+
- uses: actions/checkout@v6
|
|
78
|
+
- uses: actions/setup-python@v6
|
|
79
|
+
with:
|
|
80
|
+
python-version: "3.x"
|
|
68
81
|
- uses: dtolnay/rust-toolchain@stable
|
|
69
82
|
with:
|
|
70
83
|
target: ${{ matrix.target }}
|
|
@@ -74,13 +87,13 @@ jobs:
|
|
|
74
87
|
with:
|
|
75
88
|
manylinux: ${{ matrix.manylinux }}
|
|
76
89
|
target: ${{ matrix.target }}
|
|
77
|
-
args: ${{ matrix.args }}
|
|
90
|
+
args: ${{ matrix.args }} --interpreter ${{ matrix.interpreter }}
|
|
78
91
|
|
|
79
92
|
- run: ls dist
|
|
80
93
|
|
|
81
|
-
- uses: actions/upload-artifact@
|
|
94
|
+
- uses: actions/upload-artifact@v6
|
|
82
95
|
with:
|
|
83
|
-
name: wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
|
96
|
+
name: wheels-${{ matrix.os }}-${{ matrix.target }}-${{ strategy.job-index }}
|
|
84
97
|
path: ./dist/*.whl
|
|
85
98
|
if-no-files-found: error
|
|
86
99
|
|
|
@@ -91,16 +104,16 @@ jobs:
|
|
|
91
104
|
shell: nu {0}
|
|
92
105
|
steps:
|
|
93
106
|
- uses: hustcer/setup-nu@v3
|
|
94
|
-
- uses: actions/checkout@
|
|
107
|
+
- uses: actions/checkout@v6
|
|
95
108
|
- uses: dtolnay/rust-toolchain@stable
|
|
96
|
-
- uses: astral-sh/setup-uv@
|
|
109
|
+
- uses: astral-sh/setup-uv@v7
|
|
97
110
|
|
|
98
111
|
- name: Build sdist
|
|
99
112
|
run: uv build --sdist
|
|
100
113
|
|
|
101
114
|
- run: ls dist
|
|
102
115
|
|
|
103
|
-
- uses: actions/upload-artifact@
|
|
116
|
+
- uses: actions/upload-artifact@v6
|
|
104
117
|
with:
|
|
105
118
|
name: sdist
|
|
106
119
|
path: ./dist/*.tar.gz
|
|
@@ -116,7 +129,7 @@ jobs:
|
|
|
116
129
|
attestations: write
|
|
117
130
|
|
|
118
131
|
steps:
|
|
119
|
-
- uses: actions/download-artifact@
|
|
132
|
+
- uses: actions/download-artifact@v7
|
|
120
133
|
with:
|
|
121
134
|
path: dist
|
|
122
135
|
merge-multiple: true
|
|
@@ -124,7 +137,7 @@ jobs:
|
|
|
124
137
|
- run: ls dist
|
|
125
138
|
|
|
126
139
|
- name: Generate artifact attestation
|
|
127
|
-
uses: actions/attest-build-provenance@
|
|
140
|
+
uses: actions/attest-build-provenance@v3
|
|
128
141
|
with:
|
|
129
142
|
subject-path: "dist/*"
|
|
130
143
|
|
|
@@ -7,12 +7,14 @@ on:
|
|
|
7
7
|
paths:
|
|
8
8
|
- "**/*.py"
|
|
9
9
|
- "**/*.rs"
|
|
10
|
+
- ".github/workflows/test.yml"
|
|
10
11
|
pull_request:
|
|
11
12
|
branches:
|
|
12
13
|
- main
|
|
13
14
|
paths:
|
|
14
15
|
- "**/*.py"
|
|
15
16
|
- "**/*.rs"
|
|
17
|
+
- ".github/workflows/test.yml"
|
|
16
18
|
schedule:
|
|
17
19
|
- cron: "0 0 * * 0"
|
|
18
20
|
workflow_dispatch:
|
|
@@ -32,9 +34,9 @@ jobs:
|
|
|
32
34
|
- windows-latest
|
|
33
35
|
|
|
34
36
|
steps:
|
|
35
|
-
- uses: actions/checkout@
|
|
37
|
+
- uses: actions/checkout@v6
|
|
36
38
|
- uses: dtolnay/rust-toolchain@stable
|
|
37
|
-
- uses: astral-sh/setup-uv@
|
|
39
|
+
- uses: astral-sh/setup-uv@v7
|
|
38
40
|
- uses: mozilla-actions/sccache-action@v0.0.9
|
|
39
41
|
- name: Run tests
|
|
40
42
|
run: uvx nox -s test
|
|
@@ -14,19 +14,19 @@ repos:
|
|
|
14
14
|
- id: mixed-line-ending
|
|
15
15
|
|
|
16
16
|
- repo: https://github.com/rbubley/mirrors-prettier
|
|
17
|
-
rev: v3.
|
|
17
|
+
rev: v3.7.4
|
|
18
18
|
hooks:
|
|
19
19
|
- id: prettier
|
|
20
20
|
|
|
21
21
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
22
|
-
rev: v0.
|
|
22
|
+
rev: v0.14.11
|
|
23
23
|
hooks:
|
|
24
24
|
- id: ruff-check
|
|
25
25
|
args: [--fix, --exit-non-zero-on-fix]
|
|
26
26
|
- id: ruff-format
|
|
27
27
|
|
|
28
28
|
- repo: https://github.com/AndrejOrsula/pre-commit-cargo
|
|
29
|
-
rev: 0.
|
|
29
|
+
rev: 0.5.0
|
|
30
30
|
hooks:
|
|
31
31
|
- id: cargo-check
|
|
32
32
|
- id: cargo-fmt
|