weiji14
cog3pio
Blog
Docs
Changelog
Blog
Docs
Changelog
Overview
Branches
Benchmarks
Runs
Performance History
Latest Results
:construction_worker: Build free-threaded wheels on Python 3.14t only (#96) * :adhesive_bandage: Install tests dependency-group fully on riscv64 again No need to only install pytest and not mypy anymore, since ast-serialize=0.5.0 now has riscv64 wheels. Reverts c1ea979283072bf7a2232c34c4005b33ada2ecd2 in #94. * :construction_worker: Build free-threaded wheels on Python 3.14t only Build Linux and macOS free-threaded wheels on python 3.14t instead of 3.13t (windows was already on 3.14t since 9db1590bffa5e045ec89a4ff6495fb510eaadad4). Doing this because cupy 14.1.0 only has 3.14t wheels, and didn't want to expand my matrix build to support 313t and 314t.
main
24 hours ago
:construction_worker: Build free-threaded wheels on Python 3.14t only Build Linux and macOS free-threaded wheels on python 3.14t instead of 3.13t (windows was already on 3.14t since 9db1590bffa5e045ec89a4ff6495fb510eaadad4). Doing this because cupy 14.1.0 only has 3.14t wheels, and didn't want to expand my matrix build to support 313t and 314t.
314t-wheels
1 day ago
:arrow_up: Bump dlpark from 0.6.0 to 0.7.0 (#95) Bumps [dlpark](https://github.com/SunDoge/dlpark) from 3e8020e to 0.7.0. - [Release notes](https://github.com/SunDoge/dlpark/releases) - [Changelog](https://github.com/SunDoge/dlpark/blob/main/CHANGELOG.md) - [Commits](https://github.com/SunDoge/dlpark/compare/3e8020eb26df64bffae538f132f920c6837daafa...v0.7.0)
main
2 days ago
:arrow_up: Bump dlpark from 0.6.0 to 0.7.0 Bumps [dlpark](https://github.com/SunDoge/dlpark) from 3e8020e to 0.7.0. - [Release notes](https://github.com/SunDoge/dlpark/releases) - [Changelog](https://github.com/SunDoge/dlpark/blob/main/CHANGELOG.md) - [Commits](https://github.com/SunDoge/dlpark/compare/3e8020eb26df64bffae538f132f920c6837daafa...v0.7.0)
dlpark-0.7.0
2 days ago
:construction_worker: Update CI versions and set concurrency limits (#94) * :arrow_up: Bump to ubuntu-26.04 and miniforge3-25.11 in ReadTheDocs Xref https://docs.readthedocs.io/en/stable/config-file/v2.html#build-os and https://docs.readthedocs.io/en/stable/config-file/v2.html#build-tools-python. * :arrow_up: Bump various github actions to node 24 compatible versions Bumps [CodSpeedHQ/action](https://github.com/codspeedhq/action) from 4.11.1 to 4.15.0. - [Release notes](https://github.com/codspeedhq/action/releases) - [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codspeedhq/action/compare/281164b0f014a4e7badd2c02cecad9b595b70537...c381be0bfd20e844fb45594f6aa182ffcd94545c) Bumps [uraimo/run-on-arch-action](https://github.com/uraimo/run-on-arch-action) from 3.0.1 to 3.1.0. - [Release notes](https://github.com/uraimo/run-on-arch-action/releases) - [Commits](https://github.com/uraimo/run-on-arch-action/compare/v3.0.1...v3.1.0) Bumps [moonrepo/setup-rust](https://github.com/moonrepo/setup-rust) from 1.2.2 to 1.3.0. - [Release notes](https://github.com/moonrepo/setup-rust/releases) - [Changelog](https://github.com/moonrepo/setup-rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/moonrepo/setup-rust/compare/v1.2.2...v1.3.0) * :arrow_up: Bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.13.0 to 1.14.0. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e...cef221092ed1bacb1cc03d23a2d87d1d172e277b) * :construction_worker: Set concurrency limits for all gh action workflows Xref https://docs.zizmor.sh/audits/#concurrency-limits and https://cambridge-iccs.github.io/green-ci/best_practices.html#concurrency * :green_heart: Change from `mamba env update` to `mamba create` Try to fix `No prefix found at: /home/docs/checkouts/readthedocs.org/user_builds/project/conda/XX; Environment must first be created with "mamba create -n {env_name} ..."` * :green_heart: Don't install mypy=2 on riscv64 build for pytest step Because it pulls in ast-serialize that doesn't have riscv64 wheels yet. Mypy isn't actually needed for the unit tests, just the stubtest lint, but lazy to create a new dependency group for lint tools.
main
9 days ago
:green_heart: Don't install mypy=2 on riscv64 build for pytest step Because it pulls in ast-serialize that doesn't have riscv64 wheels yet. Mypy isn't actually needed for the unit tests, just the stubtest lint, but lazy to create a new dependency group for lint tools.
ci-improvements
9 days ago
:lock: Change Python CI workflow to use tag rather than release trigger To prevent Zizmor lint https://docs.zizmor.sh/audits/#cache-poisoning from being triggered due to sccache being true on release events that don't have tags. Need to change if-conditional on the publish-to-pypi job to match on a(lpha), b(eta) and rc on the tag string instead of checking for github.event.release.prelease == false. Keeping the publish-to-crates-io job if-conditional to work on non-prelease events still since there is no caching.
ci-improvements
10 days ago
:lock: Change Python CI workflow to use tag rather than release trigger To prevent Zizmor lint https://docs.zizmor.sh/audits/#cache-poisoning from being triggered due to sccache being true on release events that don't have tags. Need to change if-conditional on the publish-to-pypi job to match on a(lpha), b(eta) and rc on the tag string instead of checking for github.event.release.prelease == false. Keeping the publish-to-crates-io job if-conditional to work on non-prelease events still since there is no caching.
ci-improvements
10 days ago
Latest Branches
CodSpeed Performance Gauge
0%
:construction_worker: Build free-threaded wheels on Python 3.14t only
#96
1 day ago
72757ea
314t-wheels
CodSpeed Performance Gauge
0%
:arrow_up: Bump dlpark from 0.6.0 to 0.7.0
#95
2 days ago
bb8853e
dlpark-0.7.0
CodSpeed Performance Gauge
0%
:construction_worker: Update CI versions and set concurrency limits
#94
9 days ago
c1ea979
ci-improvements
© 2026 CodSpeed Technology
Home
Terms
Privacy
Docs