boabem 0.1.0__tar.gz → 0.3.0__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.
@@ -20,11 +20,11 @@ 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
24
  - os: ubuntu-24.04-arm
25
25
  manylinux: auto
26
26
  target: aarch64-unknown-linux-gnu
27
- args: --out dist
27
+ args: --out dist --zig
28
28
  - os: ubuntu-latest
29
29
  manylinux: auto
30
30
  target: riscv64gc-unknown-linux-gnu
@@ -80,7 +80,7 @@ jobs:
80
80
 
81
81
  - uses: actions/upload-artifact@v4
82
82
  with:
83
- name: wheels-${{ matrix.os }}-${{ strategy.job-index }}
83
+ name: wheels-${{ matrix.os }}-${{ matrix.target }}-${{ strategy.job-index }}
84
84
  path: ./dist/*.whl
85
85
  if-no-files-found: error
86
86
 
@@ -93,7 +93,7 @@ jobs:
93
93
  - uses: hustcer/setup-nu@v3
94
94
  - uses: actions/checkout@v5
95
95
  - uses: dtolnay/rust-toolchain@stable
96
- - uses: astral-sh/setup-uv@v6
96
+ - uses: astral-sh/setup-uv@v7
97
97
 
98
98
  - name: Build sdist
99
99
  run: uv build --sdist
@@ -124,7 +124,7 @@ jobs:
124
124
  - run: ls dist
125
125
 
126
126
  - name: Generate artifact attestation
127
- uses: actions/attest-build-provenance@v2
127
+ uses: actions/attest-build-provenance@v3
128
128
  with:
129
129
  subject-path: "dist/*"
130
130
 
@@ -34,7 +34,7 @@ jobs:
34
34
  steps:
35
35
  - uses: actions/checkout@v5
36
36
  - uses: dtolnay/rust-toolchain@stable
37
- - uses: astral-sh/setup-uv@v6
37
+ - uses: astral-sh/setup-uv@v7
38
38
  - uses: mozilla-actions/sccache-action@v0.0.9
39
39
  - name: Run tests
40
40
  run: uvx nox -s test
@@ -19,7 +19,7 @@ repos:
19
19
  - id: prettier
20
20
 
21
21
  - repo: https://github.com/astral-sh/ruff-pre-commit
22
- rev: v0.12.10
22
+ rev: v0.14.0
23
23
  hooks:
24
24
  - id: ruff-check
25
25
  args: [--fix, --exit-non-zero-on-fix]