Skip to content

Commit cf915fe

Browse files
committed
Set-up develop branch
1 parent 2b5eecd commit cf915fe

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Linux
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "develop" ]
66
pull_request:
77
workflow_dispatch:
88

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: macOS
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "develop" ]
66
pull_request:
77
workflow_dispatch:
88

@@ -46,6 +46,6 @@ jobs:
4646
export DYLD_INSERT_LIBRARIES=$(find $CONDA_PREFIX -name libtcmalloc_minimal.so.4)
4747
4848
cd use_case/usle
49-
wget --quiet https://lue.computationalgeography.org/download/lue_qa/elevation.tif
49+
curl --remote-name --silent https://lue.computationalgeography.org/download/lue_qa/elevation.tif
5050
python usle.py 1000 elevation.tif usle.tif
5151
ls -l *.tif

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Windows
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "develop" ]
66
pull_request:
77
workflow_dispatch:
88

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
include: conda_environment.yml
1+
name: lue_tutorial
2+
channels:
3+
- https://lue.computationalgeography.org/download/conda
4+
- conda-forge
5+
- nodefaults
26
dependencies:
7+
- docopt
8+
- gdal
9+
- imageio
10+
- ipython # Optional
11+
- matplotlib
12+
- lue>0.3.7
13+
- rasterio
314
- pre-commit
415
- pyright
516
- python-lsp-server
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: lue_tutorial
22
channels:
3+
- https://lue.computationalgeography.org/download/conda
34
- conda-forge
45
- nodefaults
56
dependencies:
@@ -8,5 +9,5 @@ dependencies:
89
- imageio
910
- ipython # Optional
1011
- matplotlib
11-
- lue==0.3.7
12+
- lue>0.3.7
1213
- rasterio

0 commit comments

Comments
 (0)