prefect-gitlab 0.2.5__tar.gz → 0.2.7__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.
Files changed (20) hide show
  1. {prefect_gitlab-0.2.5/prefect_gitlab.egg-info → prefect_gitlab-0.2.7}/PKG-INFO +2 -2
  2. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab/_version.py +2 -2
  3. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab/repositories.py +5 -2
  4. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7/prefect_gitlab.egg-info}/PKG-INFO +2 -2
  5. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab.egg-info/requires.txt +1 -1
  6. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/pyproject.toml +1 -1
  7. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/LICENSE +0 -0
  8. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/MANIFEST.in +0 -0
  9. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/README.md +0 -0
  10. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab/__init__.py +0 -0
  11. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab/credentials.py +0 -0
  12. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab.egg-info/SOURCES.txt +0 -0
  13. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab.egg-info/dependency_links.txt +0 -0
  14. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab.egg-info/entry_points.txt +0 -0
  15. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/prefect_gitlab.egg-info/top_level.txt +0 -0
  16. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/setup.cfg +0 -0
  17. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/tests/conftest.py +0 -0
  18. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/tests/test_credentials.py +0 -0
  19. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/tests/test_repositories.py +0 -0
  20. {prefect_gitlab-0.2.5 → prefect_gitlab-0.2.7}/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.5
3
+ Version: 0.2.7
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<3.0.0,>=2.13.5
23
+ Requires-Dist: prefect<3.0.0,>=2.20.0
24
24
  Requires-Dist: python-gitlab>=3.12.0
25
25
  Requires-Dist: tenacity>=8.2.3
26
26
  Provides-Extra: dev
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.2.5'
16
- __version_tuple__ = version_tuple = (0, 2, 5)
15
+ __version__ = version = '0.2.7'
16
+ __version_tuple__ = version_tuple = (0, 2, 7)
@@ -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
- copy_tree(src=content_source, dst=content_destination)
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.5
3
+ Version: 0.2.7
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<3.0.0,>=2.13.5
23
+ Requires-Dist: prefect<3.0.0,>=2.20.0
24
24
  Requires-Dist: python-gitlab>=3.12.0
25
25
  Requires-Dist: tenacity>=8.2.3
26
26
  Provides-Extra: dev
@@ -1,4 +1,4 @@
1
- prefect<3.0.0,>=2.13.5
1
+ prefect<3.0.0,>=2.20.0
2
2
  python-gitlab>=3.12.0
3
3
  tenacity>=8.2.3
4
4
 
@@ -24,7 +24,7 @@ classifiers = [
24
24
  "Topic :: Software Development :: Libraries",
25
25
  ]
26
26
  dependencies = [
27
- "prefect>=2.13.5, < 3.0.0",
27
+ "prefect>=2.20.0, < 3.0.0",
28
28
  "python-gitlab>=3.12.0",
29
29
  "tenacity>=8.2.3",
30
30
  ]
File without changes
File without changes
File without changes