Skip to content

Commit b51f555

Browse files
Add JAX debug step to CI, bump 0.1.5
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8a0e460 commit b51f555

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ jobs:
5050
- name: Format check
5151
run: ruff format --check jaxwavelets/
5252

53+
- name: Debug JAX config
54+
run: |
55+
python -c "import jax; print('JAX version:', jax.__version__); print('x64 enabled:', jax.config.x64_enabled); import jax.numpy as jnp; print('default dtype:', jnp.ones(1).dtype)"
56+
5357
- name: Test with coverage
5458
run: |
5559
pip install pytest-cov

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: Will Handley <wh260@cam.ac.uk>
22
pkgname=python-jaxwavelets
3-
pkgver=0.1.4
3+
pkgver=0.1.5
44
pkgrel=1
55
pkgdesc="JAX-native wavelet transforms"
66
arch=('any')

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jaxwavelets"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "JAX-native wavelet transforms"
99
readme = "README.md"
1010
license = {text = "MIT"}

0 commit comments

Comments
 (0)