prefect-gitlab 0.2.4__tar.gz → 0.2.5__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.
- {prefect_gitlab-0.2.4/prefect_gitlab.egg-info → prefect_gitlab-0.2.5}/PKG-INFO +2 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab/_version.py +2 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5/prefect_gitlab.egg-info}/PKG-INFO +2 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab.egg-info/requires.txt +1 -1
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/pyproject.toml +6 -8
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/LICENSE +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/MANIFEST.in +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/README.md +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab/__init__.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab/credentials.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab/repositories.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab.egg-info/SOURCES.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab.egg-info/dependency_links.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab.egg-info/entry_points.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/prefect_gitlab.egg-info/top_level.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/setup.cfg +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/tests/conftest.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/tests/test_credentials.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/tests/test_repositories.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.5}/tests/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: prefect-gitlab
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: A Prefect collection for working with GitLab repositories.
|
|
5
5
|
Author-email: "Prefect Technologies, Inc." <help@prefect.io>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -20,7 +20,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
20
20
|
Requires-Python: >=3.8
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: prefect
|
|
23
|
+
Requires-Dist: prefect<3.0.0,>=2.13.5
|
|
24
24
|
Requires-Dist: python-gitlab>=3.12.0
|
|
25
25
|
Requires-Dist: tenacity>=8.2.3
|
|
26
26
|
Provides-Extra: dev
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: prefect-gitlab
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: A Prefect collection for working with GitLab repositories.
|
|
5
5
|
Author-email: "Prefect Technologies, Inc." <help@prefect.io>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -20,7 +20,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
20
20
|
Requires-Python: >=3.8
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: prefect
|
|
23
|
+
Requires-Dist: prefect<3.0.0,>=2.13.5
|
|
24
24
|
Requires-Dist: python-gitlab>=3.12.0
|
|
25
25
|
Requires-Dist: tenacity>=8.2.3
|
|
26
26
|
Provides-Extra: dev
|
|
@@ -7,11 +7,9 @@ name = "prefect-gitlab"
|
|
|
7
7
|
description = "A Prefect collection for working with GitLab repositories."
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.8"
|
|
10
|
-
license = {text = "Apache License 2.0"}
|
|
10
|
+
license = { text = "Apache License 2.0" }
|
|
11
11
|
keywords = ["prefect"]
|
|
12
|
-
authors = [
|
|
13
|
-
{name = "Prefect Technologies, Inc.", email = "help@prefect.io"}
|
|
14
|
-
]
|
|
12
|
+
authors = [{ name = "Prefect Technologies, Inc.", email = "help@prefect.io" }]
|
|
15
13
|
classifiers = [
|
|
16
14
|
"Natural Language :: English",
|
|
17
15
|
"Intended Audience :: Developers",
|
|
@@ -26,9 +24,9 @@ classifiers = [
|
|
|
26
24
|
"Topic :: Software Development :: Libraries",
|
|
27
25
|
]
|
|
28
26
|
dependencies = [
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
"prefect>=2.13.5, < 3.0.0",
|
|
28
|
+
"python-gitlab>=3.12.0",
|
|
29
|
+
"tenacity>=8.2.3",
|
|
32
30
|
]
|
|
33
31
|
dynamic = ["version"]
|
|
34
32
|
|
|
@@ -78,4 +76,4 @@ fail_under = 80
|
|
|
78
76
|
show_missing = true
|
|
79
77
|
|
|
80
78
|
[tool.pytest.ini_options]
|
|
81
|
-
asyncio_mode = "auto"
|
|
79
|
+
asyncio_mode = "auto"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|