diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4873f816..c51c0b55 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -41,30 +41,37 @@ jobs: name: minimal os: ubuntu conda: "'scipy=1.9' 'numba=0.53' 'numpy<2.0' 'empymod>=2.3'" + pip: "" - python-version: "3.10" name: full os: ubuntu conda: "numba scipy xarray h5py discretize matplotlib 'numpy<2.0' 'empymod>=2.3'" # tqdm + pip: "" - python-version: "3.10" name: plain os: ubuntu conda: "numba scipy 'numpy<2.0' 'empymod>=2.3'" + pip: "" - python-version: "3.11" name: plain os: ubuntu conda: "numba scipy 'numpy<2.0' 'empymod>=2.3'" + pip: "" - python-version: "3.11" name: full os: ubuntu conda: "numba scipy xarray tqdm h5py discretize matplotlib 'numpy<2.0' 'empymod>=2.3'" + pip: "pygimli" - python-version: "3.12" name: plain os: ubuntu conda: "numba scipy 'numpy<2.0' 'empymod>=2.3'" + pip: "" - python-version: "3.12" name: full os: ubuntu conda: "numba scipy xarray tqdm h5py discretize matplotlib 'numpy<2.0' 'empymod>=2.3'" + pip: "" env: # Used for coveralls flag @@ -107,6 +114,7 @@ jobs: conda config --show conda info -a conda install ${{ matrix.case.conda }} pytest pytest-cov pytest-console-scripts coveralls flake8 setuptools-scm + python -m pip install ${{ matrix.case.pip }} - name: Conda list shell: bash -l {0}