Skip to content

Commit 37597d7

Browse files
alexfiklinducer
authored andcommitted
feat: blacklist jax 0.10.2
1 parent c6511df commit 37597d7

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Python 3 Conda:
7171
export EXTRA_INSTALL="scipy"
7272
7373
# Avoid crashes like https://gitlab.tiker.net/inducer/arraycontext/-/jobs/536021
74-
sed -i 's/jax/jax !=0.4.6/' .test-conda-env-py3.yml
74+
sed -i '/^- jax$/s/$/ !=0.4.6/' .test-conda-env-py3.yml
7575
7676
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project-within-miniconda.sh
7777
. ./build-and-test-py-project-within-miniconda.sh

.test-conda-env-py3.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ dependencies:
1515
- islpy
1616
- pip
1717
- jax
18+
# https://github.com/inducer/arraycontext/pull/366
19+
- jaxlib !=0.10.2

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ dependencies = [
3636

3737
[project.optional-dependencies]
3838
jax = [
39-
"jax>=0.4",
39+
# https://github.com/inducer/arraycontext/pull/366
40+
"jax>=0.4,!=0.10.2",
4041
]
4142
pyopencl = [
4243
"islpy>=2024.1",

0 commit comments

Comments
 (0)