Skip to content

Commit

Permalink
Add python 3.8 3.9 to CI (#43)
Browse files Browse the repository at this point in the history
* Add python 3.8 3.9 to CI

* Add 3.9 ci file

* Update ci.yaml

* Fix the actual 3.8 version

* Fix the actual 3.9 version
  • Loading branch information
jbusecke authored Apr 20, 2021
1 parent bfff15b commit fcfe4fd
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.6", "3.7"]
python-version: ["3.6", "3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v2
- name: Cache conda
Expand Down
20 changes: 20 additions & 0 deletions ci/environment-py3.8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test_env_xmovie
channels:
- conda-forge
dependencies:
- python=3.8
- xarray
- dask
- scipy
- numpy
- pytest
- future
- matplotlib
- cartopy
- pykdtree
- ffmpeg
- tqdm
- opencv
- pip:
- codecov
- pytest-cov
20 changes: 20 additions & 0 deletions ci/environment-py3.9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test_env_xmovie
channels:
- conda-forge
dependencies:
- python=3.9
- xarray
- dask
- scipy
- numpy
- pytest
- future
- matplotlib
- cartopy
- pykdtree
- ffmpeg
- tqdm
- opencv
- pip:
- codecov
- pytest-cov

0 comments on commit fcfe4fd

Please sign in to comment.