Skip to content

Commit 81e727c

Browse files
committed
change requirements install path
Signed-off-by: Carlos Gomes <[email protected]>
1 parent 1572594 commit 81e727c

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

.github/workflows/test.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install pytest
31-
pip install -r requirements.txt
32-
pip install -e .
30+
pip install -r requirements/required.txt -r requirements/test.txt
3331
- name: List pip dependencies
3432
run: pip list
3533
- name: Test with pytest

requirements/dev.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
mkdocs-material==9.4.14
2+
mkdocstrings[python]
3+
h5py==3.10.0
4+
geobench==1.0.0

requirements/required.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
torchgeo==0.5.1
2+
rioxarray==0.15.0
3+
albumentations==1.3.1
4+
rasterio==1.3.9
5+
torch==2.1.0
6+
torchvision==0.16.0
7+
torchmetrics==1.3.1
8+
geopandas==0.14.2
9+
lightly==1.4.25
10+
h5py==3.10.0
11+
geobench==1.0.0
12+
mlflow==2.12.1

requirements/test.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
coverage[toml]>=6.5
2+
pytest-cov==4.1.0
3+
pytest==7.4.3

0 commit comments

Comments
 (0)