File tree Expand file tree Collapse file tree 8 files changed +137
-31
lines changed Expand file tree Collapse file tree 8 files changed +137
-31
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,11 @@ jobs:
13
13
strategy :
14
14
matrix :
15
15
version :
16
- - {'python': '3.7', 'latest': true }
16
+ - {'python': '3.7', 'latest': false }
17
17
- {'python': '3.8', 'latest': false}
18
18
- {'python': '3.9', 'latest': false}
19
19
- {'python': '3.10', 'latest': false}
20
+ - {'python': '3.11', 'latest': true}
20
21
steps :
21
22
- name : ' Checkout repository'
22
23
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -16,12 +16,9 @@ RUN apt-get update \
16
16
&& apt clean \
17
17
&& rm -rf /var/lib/apt/lists/*
18
18
19
- COPY environment.yml /tmp/environment.yml
20
- RUN sed -i -E "s/^(\s +- python=).*$/\1 ${PYTHON_VERSION}/" /tmp/environment.yml
19
+ COPY environment-${PYTHON_VERSION}.yml /tmp/environment.yml
21
20
22
- RUN conda install python="${PYTHON_VERSION}" setuptools \
23
- && conda update conda \
24
- && conda env update -n base --file /tmp/environment.yml \
21
+ RUN conda env update -n base --file /tmp/environment.yml \
25
22
&& rm /tmp/environment.yml \
26
23
&& conda clean -a -y \
27
24
&& rm /opt/conda/pkgs/* -rf
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : environment
3
+ channels :
4
+ - defaults
5
+ - conda-forge
6
+ dependencies :
7
+ - python=3.10.13
8
+ - conda=23.10.0
9
+
10
+ - cartopy=0.22.0
11
+ - coverage=7.2.2
12
+ - coveralls=1.7.0
13
+ - gdal=3.7.3
14
+ - ipython=8.15.0
15
+ - matplotlib=3.8.0
16
+ - mock=4.0.3
17
+ - netcdf4=1.6.5
18
+ - nose=1.3.7
19
+ - numpy=1.26.0
20
+ - pillow=10.1.0
21
+ - pip=23.3
22
+ - PyYAML=5.4.1
23
+ - scipy=1.11.3
24
+ - setuptools=68.0.0
25
+ - urllib3=2.0.3
26
+ - pip :
27
+ - pythesint==1.6.6
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : environment
3
+ channels :
4
+ - defaults
5
+ - conda-forge
6
+ dependencies :
7
+ - python=3.11.5
8
+ - conda=23.10.0
9
+
10
+ - cartopy=0.22.0
11
+ - coverage=7.2.2
12
+ - coveralls=1.7.0
13
+ - gdal=3.7.3
14
+ - ipython=8.15.0
15
+ - matplotlib=3.8.0
16
+ - mock=4.0.3
17
+ - netcdf4=1.6.5
18
+ - nose=1.3.7
19
+ - numpy=1.26.0
20
+ - pillow=10.1.0
21
+ - pip=23.3
22
+ - PyYAML=5.4.1
23
+ - scipy=1.11.3
24
+ - setuptools=68.0.0
25
+ - urllib3=2.0.3
26
+ - pip :
27
+ - pythesint==1.6.6
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : environment
3
+ channels :
4
+ - defaults
5
+ dependencies :
6
+ - python=3.7.16
7
+ - conda=23.1.0
8
+
9
+ - cartopy=0.18.0
10
+ - coverage=6.3.2
11
+ - coveralls=1.7.0
12
+ - gdal=3.6.0
13
+ - ipython=7.31.1
14
+ - libgdal=3.6.0
15
+ - matplotlib=3.5.3
16
+ - mock=4.0.3
17
+ - netcdf4=1.6.2
18
+ - nose=1.3.7
19
+ - numpy=1.21.5
20
+ - pillow=9.4.0
21
+ - pip=22.3.1
22
+ - scipy=1.7.3
23
+ - setuptools=65.6.3
24
+ - urllib3=1.26.14
25
+ - pip :
26
+ - pythesint==1.6.6
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : environment
3
+ channels :
4
+ - defaults
5
+ dependencies :
6
+ - python=3.8.18
7
+ - conda=23.9.0
8
+
9
+ - cartopy=0.18.0
10
+ - coverage=5.5
11
+ - coveralls=3.2.0
12
+ - gdal=3.6.2
13
+ - ipython=8.12.2
14
+ - matplotlib=3.7.2
15
+ - mock=4.0.3
16
+ - netcdf4=1.6.2
17
+ - nose=1.3.7
18
+ - numpy=1.24.3
19
+ - pillow=10.0.1
20
+ - pip=23.3
21
+ - PyYAML=5.4.1
22
+ - scipy=1.10.1
23
+ - setuptools=68.0.0
24
+ - urllib3=1.26.18
25
+ - pip :
26
+ - pythesint==1.6.6
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : environment
3
+ channels :
4
+ - defaults
5
+ dependencies :
6
+ - python=3.9.18
7
+ - conda=23.10.0
8
+
9
+ - cartopy=0.18.0
10
+ - coverage=7.2.2
11
+ - coveralls=1.7.0
12
+ - gdal=3.6.2
13
+ - ipython=8.15.0
14
+ - matplotlib=3.8.0
15
+ - mock=4.0.3
16
+ - netcdf4=1.6.2
17
+ - nose=1.3.7
18
+ - numpy=1.26.0
19
+ - numpy-base=1.26.0
20
+ - pillow=10.0.1
21
+ - pip=23.3
22
+ - PyYAML=5.4.1
23
+ - scipy=1.11.3
24
+ - setuptools=68.0.0
25
+ - urllib3=1.26.18
26
+ - pip :
27
+ - pythesint==1.6.6
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments