File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11# Tensorflow dependency kept in a separate file, so that we can optionally exclude it
22# more easily.
3- import tensorflow as tf
4-
53from jaxtyping import UInt
64
75
86def 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 , "..." ]
You can’t perform that action at this time.
0 commit comments