Skip to content
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
2 changes: 2 additions & 0 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-x86_64:alma9
python_min:
- '3.9'
8 changes: 5 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% set python_min = '3.10' %}
{% set name = "ESMValCore" %}
{% set version = "2.11.1" %}

Expand All @@ -12,21 +13,21 @@ source:
build:
# Increment the build number when building a new conda package of the same
# esmvalcore version, reset to 0 when building a new version.
number: 0
number: 1
# This is noarch but will fail on windows due to missing dependency esmpy.
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps -vv

requirements:
host:
- python >=3.10,<3.13
- python {{ python_min }}
- git
- pip !=21.3
- pytest-runner
- setuptools >=40.6.0
- setuptools_scm >=6.2
run:
- python >=3.10,<3.13
- python >={{ python_min }},<3.13
- cartopy
- cf-units
- cftime
Expand Down Expand Up @@ -83,6 +84,7 @@ test:
- r-yaml
# - types-requests
# - types-PyYAML
- python {{ python_min }}
commands:
- pip install ESMValTool-sample-data types-requests types-PyYAML
- pytest -n 2 --ignore=run_test.py --ignore=tests/unit/documentation/
Expand Down