From 398e00813c54953a4e4d2ea4a677cc380e22ab27 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Tue, 20 Apr 2021 17:36:09 -0400 Subject: [PATCH] Bump the GMT version to 6.2.0rc1 in CI --- .github/workflows/ci_docs.yml | 3 ++- .github/workflows/ci_tests.yaml | 3 ++- environment.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml index 3738e61a4b1..9c0e0898b1c 100644 --- a/.github/workflows/ci_docs.yml +++ b/.github/workflows/ci_docs.yml @@ -66,7 +66,8 @@ jobs: # Install GMT and other required dependencies from conda-forge - name: Install dependencies run: | - conda install gmt=6.1.1 numpy pandas xarray netCDF4 packaging \ + conda install -c conda-forge/label/dev gmt=6.2.0rc1 + conda install numpy pandas xarray netCDF4 packaging \ ipython make myst-parser \ sphinx sphinx-copybutton sphinx-gallery sphinx_rtd_theme diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index 5f42db82fe6..b1af5102521 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -86,7 +86,8 @@ jobs: # Install GMT and other required dependencies from conda-forge - name: Install dependencies run: | - conda install gmt=6.1.1 numpy=${{ matrix.numpy-version }} \ + conda install -c conda-forge/label/dev gmt=6.2.0rc1 + conda install numpy=${{ matrix.numpy-version }} \ pandas xarray netCDF4 packaging \ codecov coverage[toml] dvc ipython make \ pytest-cov pytest-mpl pytest>=6.0 \ diff --git a/environment.yml b/environment.yml index 39263235d3c..d44c2ff2fb8 100644 --- a/environment.yml +++ b/environment.yml @@ -1,11 +1,12 @@ name: pygmt channels: + - conda-forge/label/dev - conda-forge - defaults dependencies: # Required dependencies - pip - - gmt=6.1.1 + - gmt=6.2.0rc1 - numpy>=1.17 - pandas - xarray