Skip to content

Commit

Permalink
Merge branch 'main' into feat/datamodules-configurable-dataloader
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-emanuel authored Oct 8, 2024
2 parents bc789d8 + 43792b4 commit ec63d84
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Add label
uses: actions/[email protected]
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.12'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -43,13 +43,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.12'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.12'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -42,13 +42,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.12'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up nodejs
uses: actions/[email protected]
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -47,21 +47,21 @@ jobs:
pytest --cov --cov-report=xml
python3 -m torchgeo --help
- name: Report coverage
uses: codecov/codecov-action@v4.5.0
uses: codecov/codecov-action@v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
minimum:
name: minimum
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -80,21 +80,21 @@ jobs:
pytest --cov --cov-report=xml
python3 -m torchgeo --help
- name: Report coverage
uses: codecov/codecov-action@v4.5.0
uses: codecov/codecov-action@v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
datasets:
name: datasets
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.12'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -111,7 +111,7 @@ jobs:
pytest --cov --cov-report=xml
python3 -m torchgeo --help
- name: Report coverage
uses: codecov/codecov-action@v4.5.0
uses: codecov/codecov-action@v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tutorials.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/[email protected].0
uses: actions/[email protected].1
- name: Set up python
uses: actions/[email protected]
with:
python-version: '3.12'
- name: Cache dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
id: cache
with:
path: ${{ env.pythonLocation }}
Expand Down
2 changes: 1 addition & 1 deletion requirements/required.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kornia==0.7.3
lightly==1.5.13
lightning[pytorch-extra]==2.4.0
matplotlib==3.9.2
numpy==2.1.1
numpy==2.1.2
pandas==2.2.3
pillow==10.4.0
pyproj==3.7.0
Expand Down

0 comments on commit ec63d84

Please sign in to comment.