53
53
if : ${{ needs.changes.outputs.changes == 'true' }}
54
54
strategy :
55
55
matrix :
56
- python-version : ["3.9 ", "3.12"]
56
+ python-version : ["3.10 ", "3.12"]
57
57
steps :
58
58
- uses : actions/checkout@v4
59
59
- uses : actions/setup-python@v5
71
71
strategy :
72
72
fail-fast : false
73
73
matrix :
74
- python-version : ["3.9 ", "3.12"]
74
+ python-version : ["3.10 ", "3.12"]
75
75
fast-compile : [0,1]
76
76
float32 : [0,1]
77
77
install-numba : [0]
@@ -87,17 +87,17 @@ jobs:
87
87
- " tests/tensor/test_basic.py tests/tensor/test_inplace.py"
88
88
- " tests/tensor/test_blas.py tests/tensor/test_elemwise.py tests/tensor/test_math_scipy.py"
89
89
exclude :
90
- - python-version : " 3.9 "
90
+ - python-version : " 3.10 "
91
91
fast-compile : 1
92
- - python-version : " 3.9 "
92
+ - python-version : " 3.10 "
93
93
float32 : 1
94
- - python-version : " 3.9 "
94
+ - python-version : " 3.10 "
95
95
part : " tests/tensor/test_math.py"
96
96
- fast-compile : 1
97
97
float32 : 1
98
98
include :
99
99
- install-numba : 1
100
- python-version : " 3.9 "
100
+ python-version : " 3.10 "
101
101
fast-compile : 0
102
102
float32 : 0
103
103
part : " tests/link/numba"
@@ -107,7 +107,7 @@ jobs:
107
107
float32 : 0
108
108
part : " tests/link/numba"
109
109
- install-jax : 1
110
- python-version : " 3.9 "
110
+ python-version : " 3.10 "
111
111
fast-compile : 0
112
112
float32 : 0
113
113
part : " tests/link/jax"
@@ -187,7 +187,7 @@ jobs:
187
187
- uses : actions/checkout@v4
188
188
with :
189
189
fetch-depth : 0
190
- - name : Set up Python 3.9
190
+ - name : Set up Python 3.10
191
191
uses : conda-incubator/setup-miniconda@v3
192
192
with :
193
193
miniforge-variant : Mambaforge
@@ -201,7 +201,7 @@ jobs:
201
201
python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))'
202
202
python -c 'import pytensor; assert pytensor.config.blas__ldflags != "", "Blas flags are empty"'
203
203
env :
204
- PYTHON_VERSION : 3.9
204
+ PYTHON_VERSION : 3.10
205
205
- name : Download previous benchmark data
206
206
uses : actions/cache@v4
207
207
with :
0 commit comments