From a13fcbd87a45d974327651dcef68f3f3d2a73a9b Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Tue, 11 Feb 2025 20:19:21 -0500 Subject: [PATCH] Add supervisor-pydantic --- recipes/supervisor-pydantic/recipe.yaml | 49 +++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 recipes/supervisor-pydantic/recipe.yaml diff --git a/recipes/supervisor-pydantic/recipe.yaml b/recipes/supervisor-pydantic/recipe.yaml new file mode 100644 index 0000000000000..060d03406b3aa --- /dev/null +++ b/recipes/supervisor-pydantic/recipe.yaml @@ -0,0 +1,49 @@ +context: + name: supervisor-pydantic + version: 1.1.0 + +package: + name: ${{ name|lower }} + version: ${{ version }} + +source: + url: https://pypi.org/packages/source/s/supervisor-pydantic/supervisor_pydantic-${{ version }}.tar.gz + sha256: 28f5e6245aa397449cccf44eafd1e57b8e36f795ab59ec81bfeab69ac2b7e294 + +build: + number: 0 + noarch: python + script: python -m pip install . -vv --no-deps --no-build-isolation + +requirements: + host: + - python ${{ python_min }}.* + - pip + - hatchling + run: + - python >=${{ python_min }} + - colorlog + - hydra-core + - jinja2 + - omegaconf + - pydantic >=2 + - rich + - typer + +tests: + - python: + imports: + - supervisor_pydantic + pip_check: true + python_version: ${{ python_min }}.* + +about: + license: Apache-2.0 + license_file: LICENSE + summary: Pydantic models for supervisor + homepage: https://github.com/airflow-laminar/supervisor-pydantic + repository: https://github.com/airflow-laminar/supervisor-pydantic + +extra: + recipe-maintainers: + - timkpaine