X Tutup
Skip to content

Commit bfb591b

Browse files
committed
Bump upper tested version to Python 3.10
1 parent 8c963bb commit bfb591b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/conda-env/test-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ dependencies:
88
- pytest-timeout
99
- numpy
1010
- matplotlib
11-
- scipy
11+
- scipy

.github/workflows/python-package-conda.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ jobs:
88
Py${{ matrix.python-version }};
99
${{ matrix.slycot || 'no' }} Slycot;
1010
${{ matrix.pandas || 'no' }} Pandas;
11-
${{ matrix.cvxopt || 'no' }} CVXOPT;
11+
${{ matrix.cvxopt || 'no' }} CVXOPT
1212
${{ matrix.array-and-matrix == 1 && '; array and matrix' || '' }}
1313
runs-on: ubuntu-latest
1414

1515
strategy:
1616
max-parallel: 5
1717
matrix:
18-
python-version: [3.7, 3.9]
18+
python-version: ['3.7', '3.10']
1919
slycot: ["", "conda"]
2020
pandas: [""]
2121
cvxopt: ["", "conda"]
2222
array-and-matrix: [0]
2323
include:
24-
- python-version: 3.9
24+
- python-version: '3.10'
2525
slycot: conda
2626
pandas: conda
2727
array-and-matrix: 1
@@ -55,7 +55,7 @@ jobs:
5555
mamba install pandas
5656
fi
5757
if [[ '${{matrix.cvxopt}}' == 'conda' ]]; then
58-
mamba install cvxopt
58+
mamba install cvxopt
5959
fi
6060
6161
- name: Test with pytest

0 commit comments

Comments
 (0)
X Tutup