-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI updates and add Python 3.11 remove Python 3.7 and 3.8 (#213)
* add Python 3.11 * update CI and add back in nightly testing * add dependabot * add macOS M1 build to CI and remove numpy version exclude * fix typo * fix conda for M1 * clean up CI conda envs * update environment files and references in contributing guidelines * add Windows to CI * try the another Windows build script * try the another Windows build script * try using old windows env * fix typo * fix typo * remove windows from CI
- Loading branch information
1 parent
79dda83
commit 1f3d23d
Showing
11 changed files
with
101 additions
and
45 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
# Check for updates once a week | ||
interval: 'weekly' |
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,21 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
build: | ||
os: "ubuntu-20.04" | ||
tools: | ||
python: "mambaforge-4.10" | ||
jobs: | ||
post_create_environment: | ||
- python -m pip install --no-cache-dir . | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: doc/source/conf.py | ||
|
||
conda: | ||
environment: build_envs/environment.yml |
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,20 @@ | ||
# Create full conda environment for development, including some useful tools | ||
name: wrf_python_build | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python>=3.9, <3.12 | ||
- compilers | ||
- basemap | ||
- cartopy | ||
- jupyter | ||
- matplotlib | ||
- netcdf4 | ||
- numpy | ||
- pycodestyle | ||
- setuptools | ||
- sphinx | ||
- sphinx_rtd_theme | ||
- wrapt | ||
- xarray | ||
|
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,3 @@ | ||
These platform specific environment files are included here for reference only and not actively tested or maintained. | ||
|
||
We have moved to a single environment file (../environment.yml) for all platforms. |
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,21 @@ | ||
# Create full conda environment for development, including some useful tools | ||
name: wrf_python_build | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python<3.12 | ||
- basemap | ||
- cartopy | ||
- clang_osx-arm64 | ||
- gfortran_osx-arm64 | ||
- jupyter | ||
- matplotlib | ||
- netcdf4 | ||
- numpy | ||
- pycodestyle | ||
- setuptools | ||
- sphinx | ||
- sphinx_rtd_theme | ||
- wrapt | ||
- xarray | ||
|
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