Skip to content

Commit c2ad98b

Browse files
Add 3.14 to version matrix
1 parent 5a65382 commit c2ad98b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run-tests:
2727
strategy:
2828
matrix:
29-
python-version: [ "3.10", "3.12" ]
29+
python-version: [ "3.10", "3.12", "3.14.0-rc.3"]
3030
os: [ ubuntu-latest ]
3131
fail-fast: false
3232
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ tests = [
4747
"equinox>=0.13.1",
4848
"ipython>=8.37.0",
4949
"jax>=0.5.3",
50-
"mlx[cpu]>=0.29.1",
51-
"numpy<2",
50+
"mlx[cpu]>=0.29.1; python_version < '3.14'",
51+
"numpy",
5252
"pytest>=8.4.2",
5353
"pytest-asyncio>=1.2.0",
54-
"tensorflow>=2.18.1",
54+
"tensorflow>=2.18.1; python_version < '3.14'",
5555
"typeguard==2.13.3",
5656
]
5757

test/test_tf_dtype.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Tensorflow dependency kept in a separate file, so that we can optionally exclude it
22
# more easily.
3-
import tensorflow as tf
4-
53
from jaxtyping import UInt
64

75

86
def test_tf_dtype():
7+
import tensorflow as tf
8+
99
x = tf.constant(1, dtype=tf.uint8)
1010
y = tf.constant(1, dtype=tf.float32)
1111
hint = UInt[tf.Tensor, "..."]

0 commit comments

Comments
 (0)