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
48 changes: 48 additions & 0 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "regionate" %}
{% set version = "0.5.5" %}
{% set python_min = "3.11" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/r/regionate/regionate-{{ version }}.tar.gz
sha256: 42b33b9a9a83fb23b737e39dd2ac40993f939bf84eb25ecb4e0a7eab6e0780be

build:
noarch: python
number: 0
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation

requirements:
host:
- python {{ python_min }}
- pip
- hatchling
run:
- python >={{ python_min }}
- pyproj
- geopandas
- regionmask
- contourpy
- sectionate >=0.3.3

test:
requires:
- python {{ python_min }}
- pip
imports:
- regionate
commands:
- pip check

about:
home: https://github.com/hdrake/regionate
summary: A package for creating xgcm-grid consistent regional masks and boundaries
license: GPL-3.0-only
license_file: LICENSE

extra:
recipe-maintainers:
- hdrake
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"proj",
"pyproj",
"geopandas",
"regionmask",
Expand Down
2 changes: 1 addition & 1 deletion regionate/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""regionate: version information"""

__version__ = "0.5.4"
__version__ = "0.5.5"
Loading