Skip to content

Commit

Permalink
move papermill (#46092)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamraj-git authored Jan 27, 2025
1 parent 806b0b4 commit b998715
Show file tree
Hide file tree
Showing 39 changed files with 530 additions and 45 deletions.
5 changes: 1 addition & 4 deletions .github/boring-cyborg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,7 @@ labelPRBasedOnFilePath:
- providers/tests/pagerduty/**/*

provider:papermill:
- providers/src/airflow/providers/papermill/**/*
- docs/apache-airflow-providers-papermill/**/*
- providers/tests/papermill/**/*
- providers/tests/system/papermill/**/*
- providers/papermill/**

provider:pgvector:
- providers/pgvector/**
Expand Down
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ apache-airflow-providers-neo4j
apache-airflow-providers-openai
apache-airflow-providers-openfaas
apache-airflow-providers-opsgenie
apache-airflow-providers-papermill
apache-airflow-providers-pgvector
apache-airflow-providers-pinecone
apache-airflow-providers-postgres
Expand Down
25 changes: 0 additions & 25 deletions docs/apache-airflow-providers-papermill/changelog.rst

This file was deleted.

84 changes: 84 additions & 0 deletions providers/papermill/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@

.. Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
`PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
Package ``apache-airflow-providers-papermill``

Release: ``3.9.0``


`Papermill <https://github.com/nteract/papermill>`__


Provider package
----------------

This is a provider package for ``papermill`` provider. All classes for this provider package
are in ``airflow.providers.papermill`` python package.

You can find package information and changelog for the provider
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-papermill/3.9.0/>`_.

Installation
------------

You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
for the minimum Airflow version supported) via
``pip install apache-airflow-providers-papermill``

The package supports the following python versions: 3.9,3.10,3.11,3.12

Requirements
------------

================== ==================
PIP package Version required
================== ==================
``apache-airflow`` ``>=2.9.0``
``papermill[all]`` ``>=2.6.0``
``scrapbook[all]`` ``>=0.5.0``
``ipykernel`` ``>=6.29.4``
``pandas`` ``>=2.1.2,<2.2``
================== ==================

Cross provider package dependencies
-----------------------------------

Those are dependencies that might be needed in order to use all the features of the package.
You need to install the specified provider packages in order to use them.

You can install such cross-provider dependencies when installing from PyPI. For example:

.. code-block:: bash
pip install apache-airflow-providers-papermill[common.compat]
================================================================================================================== =================
Dependent package Extra
================================================================================================================== =================
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
================================================================================================================== =================

The changelog for the provider package can be found in the
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-papermill/3.9.0/changelog.html>`_.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ Features
~~~~~~~~

* ``Add support to specify language name in PapermillOperator (#23916)``
* ``Fix langauge override in papermill operator (#24301)``
* ``Fix language override in papermill operator (#24301)``

.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,23 @@ Example DAG
Use the :class:`~airflow.providers.papermill.operators.papermill.PapermillOperator`
to execute a jupyter notebook:

.. exampleinclude:: /../../providers/tests/system/papermill/example_papermill.py
.. exampleinclude:: /../../providers/papermill/tests/system/papermill/example_papermill.py
:language: python
:dedent: 4
:start-after: [START howto_operator_papermill]
:end-before: [END howto_operator_papermill]

Example DAG to Verify the message in the notebook:

.. exampleinclude:: /../../providers/tests/system/papermill/example_papermill_verify.py
.. exampleinclude:: /../../providers/papermill/tests/system/papermill/example_papermill_verify.py
:language: python
:start-after: [START howto_verify_operator_papermill]
:end-before: [END howto_verify_operator_papermill]


Example DAG to Verify the message in the notebook using a remote jupyter kernel:

.. exampleinclude:: /../../providers/tests/system/papermill/example_papermill_remote_verify.py
.. exampleinclude:: /../../providers/papermill/tests/system/papermill/example_papermill_remote_verify.py
:language: python
:start-after: [START howto_verify_operator_papermill_remote_kernel]
:end-before: [END howto_verify_operator_papermill_remote_kernel]
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,12 @@ versions:
- 1.0.1
- 1.0.0

dependencies:
- apache-airflow>=2.9.0
- papermill[all]>=2.6.0
- scrapbook[all]>=0.5.0
- ipykernel>=6.29.4
- pandas>=2.1.2,<2.2

integrations:
- integration-name: Papermill
external-doc-url: https://github.com/nteract/papermill
how-to-guide:
- /docs/apache-airflow-providers-papermill/operators.rst
logo: /integration-logos/papermill/Papermill.png
logo: /docs/integration-logos/Papermill.png
tags: [software]

operators:
Expand Down
88 changes: 88 additions & 0 deletions providers/papermill/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!

# IF YOU WANT TO MODIFY THIS FILE EXCEPT DEPENDENCIES, YOU SHOULD MODIFY THE TEMPLATE
# `pyproject_TEMPLATE.toml.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
[build-system]
requires = ["flit_core==3.10.1"]
build-backend = "flit_core.buildapi"

[project]
name = "apache-airflow-providers-papermill"
version = "3.9.0"
description = "Provider package apache-airflow-providers-papermill for Apache Airflow"
readme = "README.rst"
authors = [
{name="Apache Software Foundation", email="[email protected]"},
]
maintainers = [
{name="Apache Software Foundation", email="[email protected]"},
]
keywords = [ "airflow-provider", "papermill", "airflow", "integration" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
]
requires-python = "~=3.9"

# The dependencies should be modified in place in the generated file
# Any change in the dependencies is preserved when the file is regenerated
dependencies = [
"apache-airflow>=2.9.0",
"papermill[all]>=2.6.0",
"scrapbook[all]>=0.5.0",
"ipykernel>=6.29.4",
"pandas>=2.1.2,<2.2",
]

# The optional dependencies should be modified in place in the generated file
# Any change in the dependencies is preserved when the file is regenerated
[project.optional-dependencies]
"common.compat" = [
"apache-airflow-providers-common-compat"
]

[project.urls]
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-papermill/3.9.0"
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-papermill/3.9.0/changelog.html"
"Bug Tracker" = "https://github.com/apache/airflow/issues"
"Source Code" = "https://github.com/apache/airflow"
"Slack Chat" = "https://s.apache.org/airflow-slack"
"Twitter" = "https://x.com/ApacheAirflow"
"YouTube" = "https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/"

[project.entry-points."apache_airflow_provider"]
provider_info = "airflow.providers.papermill.get_provider_info:get_provider_info"

[tool.flit.module]
name = "airflow.providers.papermill"

[tool.pytest.ini_options]
ignore = "tests/system/"
Loading

0 comments on commit b998715

Please sign in to comment.