prefect-gitlab 0.2.4__tar.gz → 0.2.6__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.6}/PKG-INFO +2 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab/_version.py +2 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab/repositories.py +5 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6/prefect_gitlab.egg-info}/PKG-INFO +2 -2
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab.egg-info/requires.txt +1 -1
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/pyproject.toml +6 -8
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/LICENSE +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/MANIFEST.in +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/README.md +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab/__init__.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab/credentials.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab.egg-info/SOURCES.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab.egg-info/dependency_links.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab.egg-info/entry_points.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/prefect_gitlab.egg-info/top_level.txt +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/setup.cfg +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/tests/conftest.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/tests/test_credentials.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/tests/test_repositories.py +0 -0
- {prefect_gitlab-0.2.4 → prefect_gitlab-0.2.6}/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.6
|
|
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
|
|
@@ -40,9 +40,10 @@ Examples:
|
|
|
40
40
|
private_gitlab_block.save()
|
|
41
41
|
```
|
|
42
42
|
"""
|
|
43
|
+
|
|
43
44
|
import io
|
|
45
|
+
import shutil
|
|
44
46
|
import urllib.parse
|
|
45
|
-
from distutils.dir_util import copy_tree
|
|
46
47
|
from pathlib import Path
|
|
47
48
|
from tempfile import TemporaryDirectory
|
|
48
49
|
from typing import Optional, Tuple, Union
|
|
@@ -213,4 +214,6 @@ class GitLabRepository(ReadableDeploymentStorage):
|
|
|
213
214
|
dst_dir=local_path, src_dir=tmp_dir, sub_directory=from_path
|
|
214
215
|
)
|
|
215
216
|
|
|
216
|
-
|
|
217
|
+
shutil.copytree(
|
|
218
|
+
src=content_source, dst=content_destination, dirs_exist_ok=True
|
|
219
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: prefect-gitlab
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
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
|