From 83f46ae51eaac2ffe21562bbbc4f7216c778d22c Mon Sep 17 00:00:00 2001 From: conda-forge-admin Date: Fri, 18 Oct 2024 09:51:37 +0000 Subject: [PATCH] Initial feedstock commit with conda-smithy 3.42.2. --- conda-forge.yml | 1 + recipe/meta.yaml | 62 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 conda-forge.yml create mode 100644 recipe/meta.yaml diff --git a/conda-forge.yml b/conda-forge.yml new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/conda-forge.yml @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/recipe/meta.yaml b/recipe/meta.yaml new file mode 100644 index 0000000..448b986 --- /dev/null +++ b/recipe/meta.yaml @@ -0,0 +1,62 @@ +{% set name = "hats" %} +{% set version = "0.4.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://github.com/astronomy-commons/hats/archive/v{{ version }}.tar.gz + sha256: ab0cbc7e6c1b116b9bcbc550d0e53c9a9cb73436b1ec6e3d6940bcf3b32e0ba5 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python >=3.9,<3.12 + - setuptools >=62 + - setuptools-scm >=6.2 + - pip + run: + - python >=3.9 + - aiohttp + - astropy <6.1 + - fsspec >=2023.10.0 + - healpy + - jproperties + - matplotlib-base >=3.3,<3.9 + - mocpy + - numba >=0.58 + - numpy <3 + - pandas + - pyarrow >=14.0.1 + - pydantic + - typing-extensions >=4.3.0 + - universal_pathlib + +test: + imports: + - hats + commands: + - pip check + - pytest tests + requires: + - pip + - pytest + - pytest-mock + - pytest-timeout + source_files: + - tests + +about: + home: https://github.com/astronomy-commons/hats + summary: 'A HATS astronomical catalog format reader library' + license: BSD-3-Clause + license_file: LICENSE + +extra: + recipe-maintainers: + - camposandro