File tree Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ jobs:
19
19
- name : setup python
20
20
uses : actions/setup-python@v2
21
21
with :
22
- python-version : 3.8
22
+ python-version : 3.10
23
23
- name : initialize cache
24
24
uses : actions/cache@v2
25
25
with :
26
26
path : ~/.cache/pip
27
- key : ${{ runner.os }}-pip-py3.8 -${{ hashFiles('ci/requirements/**.txt') }}
27
+ key : ${{ runner.os }}-pip-py3.10 -${{ hashFiles('ci/requirements/**.txt') }}
28
28
restore-keys : |
29
- ${{ runner.os }}-pip-py3.8 -
29
+ ${{ runner.os }}-pip-py3.10 -
30
30
- name : upgrade pip
31
31
run : |
32
32
python -m pip install --upgrade pip setuptools wheel
Original file line number Diff line number Diff line change 40
40
strategy :
41
41
fail-fast : false
42
42
matrix :
43
- python-version : [3.8, 3.9]
43
+ python-version : [" 3.8", " 3.9", "3.10" ]
44
44
45
45
steps :
46
46
- name : cancel previous runs
Original file line number Diff line number Diff line change 43
43
strategy :
44
44
fail-fast : false
45
45
matrix :
46
- python-version : [3.9 ]
46
+ python-version : ["3.10" ]
47
47
48
48
outputs :
49
49
artifacts_availability : ${{ steps.status.outputs.ARTIFACTS_AVAILABLE }}
Original file line number Diff line number Diff line change 4
4
netCDF4
5
5
cf-xarray >= 0.6
6
6
sphinx < 4
7
+ ipython_genutils # remove once there's a new `nbconvert` release
7
8
sphinx_rtd_theme
8
9
ipython
9
10
ipykernel
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ What's new
6
6
------------------
7
7
- drop support for python 3.7 (:pull: `153 `)
8
8
By `Justus Magin <https://github.com/keewis >`_.
9
+ - add support for python 3.10 (:pull: `155 `)
10
+ By `Justus Magin <https://github.com/keewis >`_.
9
11
10
12
0.2.1 (26 Jul 2021)
11
13
-------------------
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ classifiers =
17
17
Programming Language :: Python
18
18
Programming Language :: Python :: 3.8
19
19
Programming Language :: Python :: 3.9
20
+ Programming Language :: Python :: 3.10
20
21
Topic :: Scientific/Engineering
21
22
22
23
[options]
You can’t perform that action at this time.
0 commit comments