python3-cyberfusion-sync-support 1.3.1__tar.gz → 1.4__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.
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/PKG-INFO +3 -4
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/pyproject.toml +2 -3
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/cyberfusion/SyncSupport/unix_users.py +1 -1
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/python3_cyberfusion_sync_support.egg-info/PKG-INFO +3 -4
- python3_cyberfusion_sync_support-1.4/src/python3_cyberfusion_sync_support.egg-info/requires.txt +1 -0
- python3_cyberfusion_sync_support-1.3.1/src/python3_cyberfusion_sync_support.egg-info/requires.txt +0 -2
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/README.md +0 -0
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/setup.cfg +0 -0
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/cyberfusion/SyncSupport/__init__.py +0 -0
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/cyberfusion/SyncSupport/exceptions.py +0 -0
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/python3_cyberfusion_sync_support.egg-info/SOURCES.txt +0 -0
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/python3_cyberfusion_sync_support.egg-info/dependency_links.txt +0 -0
- {python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/src/python3_cyberfusion_sync_support.egg-info/top_level.txt +0 -0
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-cyberfusion-sync-support
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4
|
|
4
4
|
Summary: Library for syncing objects (e.g. directories).
|
|
5
5
|
Author-email: Cyberfusion <support@cyberfusion.io>
|
|
6
6
|
Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-sync-support
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist:
|
|
9
|
-
Requires-Dist: python3-cyberfusion-common~=2.9
|
|
8
|
+
Requires-Dist: python3-cyberfusion-common~=2.12
|
|
10
9
|
|
|
11
10
|
# python3-cyberfusion-sync-support
|
|
12
11
|
|
{python3_cyberfusion_sync_support-1.3.1 → python3_cyberfusion_sync_support-1.4}/pyproject.toml
RENAMED
|
@@ -4,15 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python3-cyberfusion-sync-support"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.4"
|
|
8
8
|
description = "Library for syncing objects (e.g. directories)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
11
11
|
{ name = "Cyberfusion", email = "support@cyberfusion.io" },
|
|
12
12
|
]
|
|
13
13
|
dependencies = [
|
|
14
|
-
"
|
|
15
|
-
"python3-cyberfusion-common~=2.9",
|
|
14
|
+
"python3-cyberfusion-common~=2.12",
|
|
16
15
|
]
|
|
17
16
|
|
|
18
17
|
[project.urls]
|
|
@@ -7,7 +7,7 @@ import tarfile
|
|
|
7
7
|
from pathlib import Path, PosixPath
|
|
8
8
|
from typing import List, Optional, Tuple
|
|
9
9
|
|
|
10
|
-
from
|
|
10
|
+
from functools import cached_property
|
|
11
11
|
|
|
12
12
|
from cyberfusion.Common import generate_random_string, get_md5_hash
|
|
13
13
|
from cyberfusion.Common.FilesystemComparison import (
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-cyberfusion-sync-support
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4
|
|
4
4
|
Summary: Library for syncing objects (e.g. directories).
|
|
5
5
|
Author-email: Cyberfusion <support@cyberfusion.io>
|
|
6
6
|
Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-sync-support
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist:
|
|
9
|
-
Requires-Dist: python3-cyberfusion-common~=2.9
|
|
8
|
+
Requires-Dist: python3-cyberfusion-common~=2.12
|
|
10
9
|
|
|
11
10
|
# python3-cyberfusion-sync-support
|
|
12
11
|
|
python3_cyberfusion_sync_support-1.4/src/python3_cyberfusion_sync_support.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
python3-cyberfusion-common~=2.12
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|