From 1f9ab435ed2ff4d2a868fca893c37732017551ae Mon Sep 17 00:00:00 2001 From: Wei Ji <23487320+weiji14@users.noreply.github.com> Date: Thu, 5 Aug 2021 13:36:19 +1200 Subject: [PATCH] Add tomli as a dependency in GMT Dev Tests (#1401) Adding tomli to fix the GMT Dev Tests breakages reported in #1392. This is a temporary measure until `pytest-cov` releases a new version > 2.12.1. --- .github/workflows/ci_tests_dev.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_tests_dev.yaml b/.github/workflows/ci_tests_dev.yaml index d57d6177ea9..6f73079db40 100644 --- a/.github/workflows/ci_tests_dev.yaml +++ b/.github/workflows/ci_tests_dev.yaml @@ -86,7 +86,8 @@ jobs: conda install ninja cmake libblas libcblas liblapack fftw gdal geopandas \ ghostscript libnetcdf hdf5 zlib curl pcre make dvc pip install --pre numpy pandas xarray netCDF4 packaging \ - ipython pytest-cov pytest-mpl pytest>=6.0 sphinx-gallery + ipython pytest-cov pytest-mpl pytest>=6.0 sphinx-gallery \ + tomli # Build and install latest GMT from GitHub - name: Install GMT ${{ matrix.gmt_git_ref }} branch (Linux/macOS)