Skip to content
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

Add airflow-common-operators #28809

Merged
merged 1 commit into from
Jan 13, 2025
Merged
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
49 changes: 49 additions & 0 deletions recipes/airflow-common-operators/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "airflow-common-operators" %}
{% set version = "0.1.1" %}
{% set python_min = "3.10" %}

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

source:
url: https://pypi.org/packages/source/a/airflow-common-operators/airflow_common_operators-{{ version }}.tar.gz
sha256: 3c14c343f262376ef0ac66e12d0d1e64abbb1d3386c35658ac71f0dbe5c4b5b5

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

requirements:
host:
- python {{ python_min }}
- pip
- hatchling
run:
- python >={{ python_min }}
- apache-airflow >=2.8,<3
- pydantic >=2

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

about:
home: https://github.com/airflow-laminar/airflow-common-operators
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: Common Airflow Operators / Tasks
description: Common Airflow Operators / Tasks
dev_url: https://github.com/airflow-laminar/airflow-common-operators

extra:
recipe-maintainers:
- timkpaine
Loading