-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
105 changed files
with
9,571 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,12 +56,15 @@ jobs: | |
channels: conda-forge | ||
environment-file: ci${{ matrix.python-version}}.yml | ||
activate-environment: weather-tools | ||
miniforge-variant: Mambaforge | ||
miniforge-version: latest | ||
use-mamba: true | ||
- name: Check MetView's installation | ||
shell: bash -l {0} | ||
run: python -m metview selfcheck | ||
- name: Run unit tests | ||
shell: bash -l {0} | ||
run: pytest --memray | ||
run: pytest --memray --ignore=weather_dl_v2 # Ignoring dl-v2 as it only supports py3.10 | ||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
@@ -84,42 +87,43 @@ jobs: | |
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Install linter | ||
run: | | ||
pip install ruff | ||
pip install ruff==0.1.2 | ||
- name: Lint project | ||
run: ruff check . | ||
type-check: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.8"] | ||
steps: | ||
- name: Cancel previous | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
if: ${{github.ref != 'refs/head/main'}} | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
- name: conda cache | ||
uses: actions/cache@v2 | ||
env: | ||
# Increase this value to reset cache if etc/example-environment.yml has not changed | ||
CACHE_NUMBER: 0 | ||
with: | ||
python-version: "3.8" | ||
- name: Setup conda | ||
uses: s-weigand/setup-conda@v1 | ||
path: ~/conda_pkgs_dir | ||
key: | ||
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ matrix.python-version }}-${{ hashFiles('ci3.8.yml') }} | ||
- name: Setup conda environment | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
update-conda: true | ||
python-version: "3.8" | ||
conda-channels: anaconda, conda-forge | ||
- name: Install ecCodes | ||
run: | | ||
conda install -y eccodes>=2.21.0 -c conda-forge | ||
conda install -y pyproj -c conda-forge | ||
conda install -y gdal -c conda-forge | ||
- name: Get pip cache dir | ||
id: pip-cache | ||
run: | | ||
python -m pip install --upgrade pip wheel | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Install weather-tools | ||
python-version: ${{ matrix.python-version }} | ||
channels: conda-forge | ||
environment-file: ci${{ matrix.python-version}}.yml | ||
activate-environment: weather-tools | ||
miniforge-variant: Mambaforge | ||
miniforge-version: latest | ||
use-mamba: true | ||
- name: Install weather-tools[test] | ||
run: | | ||
pip install -e .[test] --use-deprecated=legacy-resolver | ||
conda run -n weather-tools pip install -e .[test] --use-deprecated=legacy-resolver | ||
- name: Run type checker | ||
run: pytype | ||
run: conda run -n weather-tools pytype |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## weather-dl-v2 | ||
|
||
<!-- TODO: Create a setup script to ease deployment process. --> | ||
|
||
> **_NOTE:_** weather-dl-v2 only supports python 3.10 | ||
### Sequence of steps: | ||
1) Refer to downloader_kubernetes/README.md | ||
2) Refer to license_deployment/README.md | ||
3) Refer to fastapi-server/README.md | ||
4) Refer to cli/README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. |
Oops, something went wrong.