Skip to content

Commit e08764b

Browse files
Merge pull request #28 from quantumlib/add_py13
Build for py13
2 parents fff3ffc + e8693ef commit e08764b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Build package
6262
env:
63-
CIBW_BUILD: "cp310* cp311* cp312*"
63+
CIBW_BUILD: "cp310* cp311* cp312* cp313*"
6464
CIBW_ARCHS: ${{ matrix.arch }}
6565
CIBW_SKIP: "*musllinux*"
6666
run: |

.github/workflows/stable-release-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Build package
6161
env:
62-
CIBW_BUILD: "cp310* cp311* cp312*"
62+
CIBW_BUILD: "cp310* cp311* cp312* cp313*"
6363
CIBW_ARCHS: ${{ matrix.arch }}
6464
CIBW_SKIP: "*musllinux*"
6565
run: |

test/test_value.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def test_hash() -> None:
208208
def test_numpy_sqrt() -> None:
209209
from tunits.units import m, km, cm
210210

211-
u: Value = np.sqrt(8 * km * m) - cm
211+
u: Value = np.sqrt(8 * km * m) - cm # type: ignore[assignment]
212212
v = 8943.27191 * cm
213213
assert np.isclose(u / v, 1)
214214

0 commit comments

Comments
 (0)