apache-airflow-providers-git 0.0.7__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apache_airflow_providers_git-0.2.0/NOTICE +5 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/PKG-INFO +36 -13
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/README.rst +29 -9
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/bundles/index.rst +2 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/changelog.rst +93 -5
- apache_airflow_providers_git-0.2.0/docs/index.rst +129 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/provider.yaml +8 -3
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/pyproject.toml +7 -4
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/__init__.py +1 -1
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/bundles/git.py +116 -24
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/get_provider_info.py +4 -2
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/hooks/git.py +6 -2
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/version_compat.py +1 -6
- apache_airflow_providers_git-0.2.0/tests/unit/__init__.py +17 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/tests/unit/git/bundles/test_git.py +255 -24
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/tests/unit/git/hooks/test_git.py +32 -2
- apache_airflow_providers_git-0.0.7/docs/index.rst +0 -100
- apache_airflow_providers_git-0.0.7/tests/unit/git/hooks/__init__.py +0 -16
- {apache_airflow_providers_git-0.0.7/src/airflow/providers/git → apache_airflow_providers_git-0.2.0}/LICENSE +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/.latest-doc-only-change.txt +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/commits.rst +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/conf.py +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/connections/git.rst +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/security.rst +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/bundles/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/src/airflow/providers/git/hooks/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/tests/conftest.py +0 -0
- {apache_airflow_providers_git-0.0.7/tests/unit → apache_airflow_providers_git-0.2.0/tests/unit/git}/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.7/tests/unit/git → apache_airflow_providers_git-0.2.0/tests/unit/git/bundles}/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.7/tests/unit/git/bundles → apache_airflow_providers_git-0.2.0/tests/unit/git/hooks}/__init__.py +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-git
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Provider package apache-airflow-providers-git for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,git,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
8
|
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
|
+
License-Expression: Apache-2.0
|
|
10
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Environment :: Console
|
|
12
13
|
Classifier: Environment :: Web Environment
|
|
@@ -14,17 +15,19 @@ Classifier: Intended Audience :: Developers
|
|
|
14
15
|
Classifier: Intended Audience :: System Administrators
|
|
15
16
|
Classifier: Framework :: Apache Airflow
|
|
16
17
|
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
License-File: NOTICE
|
|
23
25
|
Requires-Dist: apache-airflow>=3.0.0
|
|
26
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.10.1
|
|
24
27
|
Requires-Dist: GitPython>=3.1.44
|
|
25
28
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
26
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
27
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
29
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0/changelog.html
|
|
30
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0
|
|
28
31
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
29
32
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
30
33
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -55,7 +58,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
55
58
|
|
|
56
59
|
Package ``apache-airflow-providers-git``
|
|
57
60
|
|
|
58
|
-
Release: ``0.0
|
|
61
|
+
Release: ``0.2.0``
|
|
59
62
|
|
|
60
63
|
|
|
61
64
|
`Distributed version control system (GIT) <https://git-scm.com/>`__
|
|
@@ -68,7 +71,7 @@ This is a provider package for ``git`` provider. All classes for this provider p
|
|
|
68
71
|
are in ``airflow.providers.git`` python package.
|
|
69
72
|
|
|
70
73
|
You can find package information and changelog for the provider
|
|
71
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
74
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0/>`_.
|
|
72
75
|
|
|
73
76
|
Installation
|
|
74
77
|
------------
|
|
@@ -82,13 +85,33 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
|
82
85
|
Requirements
|
|
83
86
|
------------
|
|
84
87
|
|
|
85
|
-
|
|
86
|
-
PIP package
|
|
87
|
-
|
|
88
|
-
``apache-airflow``
|
|
89
|
-
``
|
|
90
|
-
|
|
88
|
+
========================================== ==================
|
|
89
|
+
PIP package Version required
|
|
90
|
+
========================================== ==================
|
|
91
|
+
``apache-airflow`` ``>=3.0.0``
|
|
92
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
93
|
+
``GitPython`` ``>=3.1.44``
|
|
94
|
+
========================================== ==================
|
|
95
|
+
|
|
96
|
+
Cross provider package dependencies
|
|
97
|
+
-----------------------------------
|
|
98
|
+
|
|
99
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
100
|
+
You need to install the specified providers in order to use them.
|
|
101
|
+
|
|
102
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
103
|
+
|
|
104
|
+
.. code-block:: bash
|
|
105
|
+
|
|
106
|
+
pip install apache-airflow-providers-git[common.compat]
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
================================================================================================================== =================
|
|
110
|
+
Dependent package Extra
|
|
111
|
+
================================================================================================================== =================
|
|
112
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
113
|
+
================================================================================================================== =================
|
|
91
114
|
|
|
92
115
|
The changelog for the provider package can be found in the
|
|
93
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
116
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0/changelog.html>`_.
|
|
94
117
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-git``
|
|
25
25
|
|
|
26
|
-
Release: ``0.0
|
|
26
|
+
Release: ``0.2.0``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
`Distributed version control system (GIT) <https://git-scm.com/>`__
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``git`` provider. All classes for this provider p
|
|
|
36
36
|
are in ``airflow.providers.git`` python package.
|
|
37
37
|
|
|
38
38
|
You can find package information and changelog for the provider
|
|
39
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -50,12 +50,32 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
|
50
50
|
Requirements
|
|
51
51
|
------------
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
PIP package
|
|
55
|
-
|
|
56
|
-
``apache-airflow``
|
|
57
|
-
``
|
|
58
|
-
|
|
53
|
+
========================================== ==================
|
|
54
|
+
PIP package Version required
|
|
55
|
+
========================================== ==================
|
|
56
|
+
``apache-airflow`` ``>=3.0.0``
|
|
57
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
58
|
+
``GitPython`` ``>=3.1.44``
|
|
59
|
+
========================================== ==================
|
|
60
|
+
|
|
61
|
+
Cross provider package dependencies
|
|
62
|
+
-----------------------------------
|
|
63
|
+
|
|
64
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
65
|
+
You need to install the specified providers in order to use them.
|
|
66
|
+
|
|
67
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
68
|
+
|
|
69
|
+
.. code-block:: bash
|
|
70
|
+
|
|
71
|
+
pip install apache-airflow-providers-git[common.compat]
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
================================================================================================================== =================
|
|
75
|
+
Dependent package Extra
|
|
76
|
+
================================================================================================================== =================
|
|
77
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
78
|
+
================================================================================================================== =================
|
|
59
79
|
|
|
60
80
|
The changelog for the provider package can be found in the
|
|
61
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
81
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0/changelog.html>`_.
|
{apache_airflow_providers_git-0.0.7 → apache_airflow_providers_git-0.2.0}/docs/changelog.rst
RENAMED
|
@@ -19,11 +19,101 @@
|
|
|
19
19
|
Changelog
|
|
20
20
|
---------
|
|
21
21
|
|
|
22
|
-
0.0
|
|
22
|
+
0.2.0
|
|
23
|
+
.....
|
|
24
|
+
|
|
25
|
+
Features
|
|
26
|
+
~~~~~~~~
|
|
27
|
+
|
|
28
|
+
* ``Add submodules to GitDagBundle (#59911)``
|
|
29
|
+
|
|
30
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
31
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
32
|
+
|
|
33
|
+
0.1.1
|
|
34
|
+
.....
|
|
35
|
+
|
|
36
|
+
Misc
|
|
37
|
+
~~~~
|
|
38
|
+
|
|
39
|
+
* ``Fix misleading error message when GitHook creation fails (#59084)``
|
|
40
|
+
* ``Add backcompat for exceptions in providers (#58727)``
|
|
41
|
+
|
|
42
|
+
Doc-only
|
|
43
|
+
~~~~~~~~
|
|
44
|
+
|
|
45
|
+
* ``Updates to release process of providers (#58316)``
|
|
46
|
+
|
|
47
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
48
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
49
|
+
|
|
50
|
+
0.1.0
|
|
51
|
+
.....
|
|
52
|
+
|
|
53
|
+
Features
|
|
54
|
+
~~~~~~~~
|
|
55
|
+
|
|
56
|
+
* ``Add HTTP URL authentication support to GitHook (#58194)``
|
|
57
|
+
|
|
58
|
+
Bug Fixes
|
|
59
|
+
~~~~~~~~~
|
|
60
|
+
|
|
61
|
+
* ``Remove '.git' folder from versions in GitDagBundle (#57069)``
|
|
62
|
+
* ``Fix Git corruption recovery by moving fetch into retry context (#56913)``
|
|
63
|
+
|
|
64
|
+
Misc
|
|
65
|
+
~~~~
|
|
66
|
+
|
|
67
|
+
* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
|
|
68
|
+
|
|
69
|
+
Doc-only
|
|
70
|
+
~~~~~~~~
|
|
71
|
+
|
|
72
|
+
* ``Fixing some typos and spelling errors (#57186)``
|
|
73
|
+
|
|
74
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
75
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
76
|
+
* ``Delete all unnecessary LICENSE Files (#58191)``
|
|
77
|
+
* ``Fix the '__init__.py' for tests (#58211)``
|
|
78
|
+
* ``Enable PT006 rule to 6 files in providers (edge3,git) (#58018)``
|
|
79
|
+
* ``Fix documentation/provider.yaml consistencies (#57283)``
|
|
80
|
+
|
|
81
|
+
0.0.9
|
|
23
82
|
.....
|
|
24
83
|
|
|
84
|
+
Bug Fixes
|
|
85
|
+
~~~~~~~~~
|
|
86
|
+
|
|
87
|
+
* ``Fix corrupted bare Git repository recovery in DAG bundles (#56206)``
|
|
88
|
+
|
|
89
|
+
Misc
|
|
90
|
+
~~~~
|
|
91
|
+
|
|
92
|
+
* ``Migrate git provider to ''common.compat'' (#57008)``
|
|
93
|
+
|
|
94
|
+
Doc-only
|
|
95
|
+
~~~~~~~~
|
|
96
|
+
|
|
97
|
+
* ``Remove placeholder Release Date in changelog and index files (#56056)``
|
|
98
|
+
|
|
99
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
100
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
101
|
+
|
|
102
|
+
0.0.8
|
|
103
|
+
.....
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
Bug Fixes
|
|
107
|
+
~~~~~~~~~
|
|
108
|
+
|
|
109
|
+
* ``Fix https access token repo url (#54643)``
|
|
110
|
+
|
|
111
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
112
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
113
|
+
|
|
114
|
+
0.0.7
|
|
115
|
+
.....
|
|
25
116
|
|
|
26
|
-
Release Date: ``|PypiReleaseDate|``
|
|
27
117
|
|
|
28
118
|
Bug Fixes
|
|
29
119
|
~~~~~~~~~
|
|
@@ -41,8 +131,6 @@ Doc-only
|
|
|
41
131
|
* ``Fix git connection test by adding required conn_type field (#54681)``
|
|
42
132
|
* ``Replace API server's direct Connection access workaround in BaseHook (#54083)``
|
|
43
133
|
* ``Switch pre-commit to prek (#54258)``
|
|
44
|
-
|
|
45
|
-
.. Review and move the new changes to one of the sections above:
|
|
46
134
|
* ``Fix Airflow 2 reference in README/index of providers (#55240)``
|
|
47
135
|
|
|
48
136
|
0.0.6
|
|
@@ -51,7 +139,7 @@ Doc-only
|
|
|
51
139
|
Misc
|
|
52
140
|
~~~~
|
|
53
141
|
|
|
54
|
-
* ``Refactor bundle view_url to not
|
|
142
|
+
* ``Refactor bundle view_url to not instantiate bundle on server components (#52876)``
|
|
55
143
|
|
|
56
144
|
.. Below changes are excluded from the changelog. Move them to
|
|
57
145
|
appropriate section above if needed. Do not delete the lines(!):
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
|
|
2
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
or more contributor license agreements. See the NOTICE file
|
|
4
|
+
distributed with this work for additional information
|
|
5
|
+
regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance
|
|
8
|
+
with the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
13
|
+
software distributed under the License is distributed on an
|
|
14
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
KIND, either express or implied. See the License for the
|
|
16
|
+
specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
|
|
19
|
+
``apache-airflow-providers-git``
|
|
20
|
+
================================
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
.. toctree::
|
|
24
|
+
:hidden:
|
|
25
|
+
:maxdepth: 1
|
|
26
|
+
:caption: Basics
|
|
27
|
+
|
|
28
|
+
Home <self>
|
|
29
|
+
Changelog <changelog>
|
|
30
|
+
Security <security>
|
|
31
|
+
|
|
32
|
+
.. toctree::
|
|
33
|
+
:hidden:
|
|
34
|
+
:maxdepth: 1
|
|
35
|
+
:caption: References
|
|
36
|
+
|
|
37
|
+
Connection Types <connections/git>
|
|
38
|
+
Python API <_api/airflow/providers/git/index>
|
|
39
|
+
|
|
40
|
+
.. toctree::
|
|
41
|
+
:hidden:
|
|
42
|
+
:maxdepth: 1
|
|
43
|
+
:caption: Bundles
|
|
44
|
+
|
|
45
|
+
Bundles <bundles/index>
|
|
46
|
+
|
|
47
|
+
.. toctree::
|
|
48
|
+
:hidden:
|
|
49
|
+
:maxdepth: 1
|
|
50
|
+
:caption: Resources
|
|
51
|
+
|
|
52
|
+
PyPI Repository <https://pypi.org/project/apache-airflow-providers-git/>
|
|
53
|
+
Installing from sources <installing-providers-from-sources>
|
|
54
|
+
Python API <_api/airflow/providers/git/index>
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
.. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN AT RELEASE TIME!
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
.. toctree::
|
|
62
|
+
:hidden:
|
|
63
|
+
:maxdepth: 1
|
|
64
|
+
:caption: Commits
|
|
65
|
+
|
|
66
|
+
Detailed list of commits <commits>
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
apache-airflow-providers-git package
|
|
70
|
+
------------------------------------------------------
|
|
71
|
+
|
|
72
|
+
`Distributed version control system (GIT) <https://git-scm.com/>`__
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
Release: 0.2.0
|
|
76
|
+
|
|
77
|
+
Provider package
|
|
78
|
+
----------------
|
|
79
|
+
|
|
80
|
+
This package is for the ``git`` provider.
|
|
81
|
+
All classes for this package are included in the ``airflow.providers.git`` python package.
|
|
82
|
+
|
|
83
|
+
Installation
|
|
84
|
+
------------
|
|
85
|
+
|
|
86
|
+
You can install this package on top of an existing Airflow installation via
|
|
87
|
+
``pip install apache-airflow-providers-git``.
|
|
88
|
+
For the minimum Airflow version supported, see ``Requirements`` below.
|
|
89
|
+
|
|
90
|
+
Requirements
|
|
91
|
+
------------
|
|
92
|
+
|
|
93
|
+
The minimum Apache Airflow version supported by this provider distribution is ``3.0.0``.
|
|
94
|
+
|
|
95
|
+
========================================== ==================
|
|
96
|
+
PIP package Version required
|
|
97
|
+
========================================== ==================
|
|
98
|
+
``apache-airflow`` ``>=3.0.0``
|
|
99
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
100
|
+
``GitPython`` ``>=3.1.44``
|
|
101
|
+
========================================== ==================
|
|
102
|
+
|
|
103
|
+
Cross provider package dependencies
|
|
104
|
+
-----------------------------------
|
|
105
|
+
|
|
106
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
107
|
+
You need to install the specified provider distributions in order to use them.
|
|
108
|
+
|
|
109
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
110
|
+
|
|
111
|
+
.. code-block:: bash
|
|
112
|
+
|
|
113
|
+
pip install apache-airflow-providers-git[common.compat]
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
================================================================================================================== =================
|
|
117
|
+
Dependent package Extra
|
|
118
|
+
================================================================================================================== =================
|
|
119
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
120
|
+
================================================================================================================== =================
|
|
121
|
+
|
|
122
|
+
Downloading official packages
|
|
123
|
+
-----------------------------
|
|
124
|
+
|
|
125
|
+
You can download officially released packages and verify their checksums and signatures from the
|
|
126
|
+
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
|
|
127
|
+
|
|
128
|
+
* `The apache-airflow-providers-git 0.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_git-0.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_git-0.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_git-0.2.0.tar.gz.sha512>`__)
|
|
129
|
+
* `The apache-airflow-providers-git 0.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_git-0.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_git-0.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_git-0.2.0-py3-none-any.whl.sha512>`__)
|
|
@@ -22,12 +22,17 @@ description: |
|
|
|
22
22
|
`Distributed version control system (GIT) <https://git-scm.com/>`__
|
|
23
23
|
|
|
24
24
|
state: ready
|
|
25
|
-
source-date-epoch:
|
|
25
|
+
source-date-epoch: 1767124631
|
|
26
26
|
# Note that those versions are maintained by release manager - do not update them manually
|
|
27
27
|
# with the exception of case where other provider in sources has >= new provider version.
|
|
28
28
|
# In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
|
|
29
29
|
# to be done in the same PR
|
|
30
30
|
versions:
|
|
31
|
+
- 0.2.0
|
|
32
|
+
- 0.1.1
|
|
33
|
+
- 0.1.0
|
|
34
|
+
- 0.0.9
|
|
35
|
+
- 0.0.8
|
|
31
36
|
- 0.0.7
|
|
32
37
|
- 0.0.6
|
|
33
38
|
- 0.0.5
|
|
@@ -42,11 +47,11 @@ integrations:
|
|
|
42
47
|
tags: [software]
|
|
43
48
|
|
|
44
49
|
hooks:
|
|
45
|
-
- integration-name: GIT
|
|
50
|
+
- integration-name: GIT (Git)
|
|
46
51
|
python-modules:
|
|
47
52
|
- airflow.providers.git.hooks.git
|
|
48
53
|
bundles:
|
|
49
|
-
- integration-name: GIT
|
|
54
|
+
- integration-name: GIT (Git)
|
|
50
55
|
python-modules:
|
|
51
56
|
- airflow.providers.git.bundles.git
|
|
52
57
|
|
|
@@ -25,9 +25,11 @@ build-backend = "flit_core.buildapi"
|
|
|
25
25
|
|
|
26
26
|
[project]
|
|
27
27
|
name = "apache-airflow-providers-git"
|
|
28
|
-
version = "0.0
|
|
28
|
+
version = "0.2.0"
|
|
29
29
|
description = "Provider package apache-airflow-providers-git for Apache Airflow"
|
|
30
30
|
readme = "README.rst"
|
|
31
|
+
license = "Apache-2.0"
|
|
32
|
+
license-files = ['LICENSE', 'NOTICE']
|
|
31
33
|
authors = [
|
|
32
34
|
{name="Apache Software Foundation", email="dev@airflow.apache.org"},
|
|
33
35
|
]
|
|
@@ -43,7 +45,6 @@ classifiers = [
|
|
|
43
45
|
"Intended Audience :: System Administrators",
|
|
44
46
|
"Framework :: Apache Airflow",
|
|
45
47
|
"Framework :: Apache Airflow :: Provider",
|
|
46
|
-
"License :: OSI Approved :: Apache Software License",
|
|
47
48
|
"Programming Language :: Python :: 3.10",
|
|
48
49
|
"Programming Language :: Python :: 3.11",
|
|
49
50
|
"Programming Language :: Python :: 3.12",
|
|
@@ -58,6 +59,7 @@ requires-python = ">=3.10"
|
|
|
58
59
|
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
|
|
59
60
|
dependencies = [
|
|
60
61
|
"apache-airflow>=3.0.0",
|
|
62
|
+
"apache-airflow-providers-common-compat>=1.10.1",
|
|
61
63
|
"GitPython>=3.1.44",
|
|
62
64
|
]
|
|
63
65
|
|
|
@@ -66,6 +68,7 @@ dev = [
|
|
|
66
68
|
"apache-airflow",
|
|
67
69
|
"apache-airflow-task-sdk",
|
|
68
70
|
"apache-airflow-devel-common",
|
|
71
|
+
"apache-airflow-providers-common-compat",
|
|
69
72
|
# Additional devel dependencies (do not remove this line and add extra development dependencies)
|
|
70
73
|
]
|
|
71
74
|
|
|
@@ -95,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true}
|
|
|
95
98
|
apache-airflow-providers-standard = {workspace = true}
|
|
96
99
|
|
|
97
100
|
[project.urls]
|
|
98
|
-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
99
|
-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-git/0.0
|
|
101
|
+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0"
|
|
102
|
+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-git/0.2.0/changelog.html"
|
|
100
103
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
|
101
104
|
"Source Code" = "https://github.com/apache/airflow"
|
|
102
105
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "0.0
|
|
32
|
+
__version__ = "0.2.0"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"3.0.0"
|