Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code sprint final mergin #11

Merged
merged 33 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
05c36df
including metview
PaoloBonettiPolimi Oct 8, 2024
a28ef7a
read from metview
PaoloBonettiPolimi Oct 8, 2024
d856b70
connecting to data
PaoloBonettiPolimi Oct 8, 2024
f54575a
adding plot
PaoloBonettiPolimi Oct 8, 2024
158a255
Update Format
PaoloBonettiPolimi Oct 8, 2024
deb914b
adding unets lead 1
PaoloBonettiPolimi Oct 8, 2024
4b3a355
adding unets lead 2
PaoloBonettiPolimi Oct 8, 2024
3796a63
adding unets lead 3
PaoloBonettiPolimi Oct 8, 2024
22a182b
adding unets lead 4
PaoloBonettiPolimi Oct 8, 2024
0b00970
adding unets lead 5
PaoloBonettiPolimi Oct 8, 2024
1d35055
adding unets lead 6
PaoloBonettiPolimi Oct 8, 2024
205dc2a
adding unets lead 7
PaoloBonettiPolimi Oct 8, 2024
44addae
adding unets lead 8
PaoloBonettiPolimi Oct 8, 2024
c5551b1
adding unets lead 9
PaoloBonettiPolimi Oct 8, 2024
c76dd4e
adding unets lead 10
PaoloBonettiPolimi Oct 8, 2024
673178b
adding unets lead 11
PaoloBonettiPolimi Oct 8, 2024
808bf13
adding unets lead 12
PaoloBonettiPolimi Oct 8, 2024
9b5279b
adding unets lead 13
PaoloBonettiPolimi Oct 8, 2024
4659287
moving metview
PaoloBonettiPolimi Oct 8, 2024
5d3f28d
Update reading of png file
PaoloBonettiPolimi Oct 9, 2024
8475422
Added region dict & metview in requirements
Oct 9, 2024
c0e98e5
Added leadtime parameter
Oct 9, 2024
aa43f0e
adding eccodes to requirements
Oct 9, 2024
38e7677
fixing tests?
Oct 9, 2024
e5a9347
fixing tests without .github
Oct 9, 2024
7ae6f49
Update main.yml for tests
PaoloBonettiPolimi Oct 9, 2024
8c0264f
Update main.yml with timeout
PaoloBonettiPolimi Oct 9, 2024
4f4e602
improving clarity
Oct 9, 2024
17e5905
aligning with lint
Oct 9, 2024
087bfef
aligning with lint_2
Oct 9, 2024
3e971e8
aligning with lint_3
Oct 9, 2024
082f013
fixing docs
Oct 9, 2024
07385c2
fixing read
Oct 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .eggs/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins.

This directory caches those eggs to prevent repeated downloads.

However, it is safe to delete this directory.

12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install packages
run: |
sudo apt-get -y install pandoc
sudo apt-get -y install pandoc metview
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand All @@ -29,11 +29,13 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Test with pytest ⚙️
run: make test
run:
export METVIEW_PYTHON_START_TIMEOUT=20
make test
- name: Lint with flake8 ⚙️
run: make lint
if: matrix.python-version == 3.9
if: matrix.python-version == 3.11
- name: Build docs 🏗️
run: make docs
if: matrix.python-version == 3.9
if: matrix.python-version == 3.11

Loading
Loading