Skip to content

Temporarily pin funcy<2.0 for dvc fix #2468

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@ jobs:
use-mamba: true

# Install GMT and other required dependencies from conda-forge
# TODO: Remove funcy pin after next DVC release
- name: Install dependencies
run: |
mamba install gmt=6.4.0 numpy=${{ matrix.numpy-version }} \
pandas xarray netCDF4 packaging \
${{ matrix.optional-packages }} \
build dvc make 'pytest>=6.0' \
build dvc 'funcy=1.18' make 'pytest>=6.0' \
pytest-cov pytest-doctestplus pytest-mpl sphinx-gallery

# Show installed pkg information for postmortem diagnostic
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,15 @@ jobs:
use-mamba: true

# Install dependencies from conda-forge
# TODO: Remove funcy pin after next DVC release
- name: Install dependencies
run: |
mamba install python=${{ matrix.python-version }} \
ninja cmake libblas libcblas liblapack fftw libgdal \
geopandas ghostscript libnetcdf hdf5 zlib curl pcre make
pip install --pre --prefer-binary \
numpy pandas xarray netCDF4 packaging \
build contextily dvc ipython rioxarray \
build contextily dvc 'funcy=1.18' ipython rioxarray \
'pytest>=6.0' pytest-cov pytest-doctestplus pytest-mpl \
sphinx-gallery

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci_tests_legacy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ jobs:
use-mamba: true

# Install GMT and other required dependencies from conda-forge
# TODO: Remove funcy pin after next DVC release
- name: Install dependencies
run: |
mamba install gmt=${{ matrix.gmt_version }} numpy \
pandas xarray netCDF4 packaging \
contextily geopandas ipython rioxarray \
build dvc make 'pytest>=6.0' \
build dvc 'funcy=1.18' make 'pytest>=6.0' \
pytest-cov pytest-doctestplus pytest-mpl sphinx-gallery

# Show installed pkg information for postmortem diagnostic
Expand Down