File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 66 unittest :
77 runs-on : ubuntu-latest
88 strategy :
9+ fail-fast : false
910 matrix :
10- python-version : ['3.12']
11+ python-version : ['3.12', '3.13' ]
1112 steps :
1213 - name : Checkout PyAutoConf
1314 uses : actions/checkout@v2
3637 pip3 install setuptools
3738 pip3 install wheel
3839 pip3 install pytest coverage pytest-cov
39- pip install ./PyAutoConf "./PyAutoArray[optional]"
40+ pip install ./PyAutoConf ./PyAutoArray
41+ if [ "${{ matrix.python-version }}" = "3.12" ]; then
42+ pip install "./PyAutoArray[optional]"
43+ else
44+ pip install numba pynufft
45+ fi
4046
4147 - name : Extract branch name
4248 shell : bash
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ classifiers = [
1818 " Topic :: Scientific/Engineering :: Physics" ,
1919 " Natural Language :: English" ,
2020 " Operating System :: OS Independent" ,
21- " Programming Language :: Python :: 3.12"
21+ " Programming Language :: Python :: 3.12" ,
22+ " Programming Language :: Python :: 3.13"
2223]
2324keywords = [" cli" ]
2425dependencies = [
You can’t perform that action at this time.
0 commit comments