testgres.os-ops 2.0.1__tar.gz → 2.0.2__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.
- {testgres_os_ops-2.0.1/testgres.os_ops.egg-info → testgres_os_ops-2.0.2}/PKG-INFO +3 -3
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/pyproject.toml +3 -3
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2/testgres.os_ops.egg-info}/PKG-INFO +3 -3
- testgres_os_ops-2.0.2/testgres.os_ops.egg-info/requires.txt +3 -0
- testgres_os_ops-2.0.1/testgres.os_ops.egg-info/requires.txt +0 -3
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/LICENSE +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/README.md +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/setup.cfg +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/exceptions.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/helpers.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/local_ops.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/os_ops.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/raise_error.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/remote_ops.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/SOURCES.txt +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/dependency_links.txt +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/top_level.txt +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/tests/test_os_ops_common.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/tests/test_os_ops_local.py +0 -0
- {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/tests/test_os_ops_remote.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testgres.os_ops
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Testgres subsystem to work with OS
|
|
5
5
|
Author-email: Postgres Professional <testgres@postgrespro.ru>
|
|
6
6
|
License: PostgreSQL
|
|
@@ -19,12 +19,12 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.14
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries
|
|
21
21
|
Classifier: Topic :: Software Development :: Testing
|
|
22
|
-
Requires-Python: >=3.7.
|
|
22
|
+
Requires-Python: >=3.7.3
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
Requires-Dist: psutil
|
|
26
26
|
Requires-Dist: six>=1.9.0
|
|
27
|
-
Requires-Dist: testgres.common<2.0.0,>=1.0.
|
|
27
|
+
Requires-Dist: testgres.common<2.0.0,>=1.0.1
|
|
28
28
|
Dynamic: license-file
|
|
29
29
|
|
|
30
30
|
[](https://github.com/postgrespro/testgres.os_ops/actions/workflows/package-verification.yml)
|
|
@@ -11,7 +11,7 @@ exclude = [".git", "__pycache__", "env", "venv"]
|
|
|
11
11
|
|
|
12
12
|
[project]
|
|
13
13
|
name = "testgres.os_ops"
|
|
14
|
-
version = "2.0.
|
|
14
|
+
version = "2.0.2"
|
|
15
15
|
|
|
16
16
|
description = "Testgres subsystem to work with OS"
|
|
17
17
|
readme = "README.md"
|
|
@@ -28,7 +28,7 @@ keywords = [
|
|
|
28
28
|
'testgres',
|
|
29
29
|
]
|
|
30
30
|
|
|
31
|
-
requires-python = ">=3.7.
|
|
31
|
+
requires-python = ">=3.7.3"
|
|
32
32
|
|
|
33
33
|
classifiers = [
|
|
34
34
|
"Intended Audience :: Developers",
|
|
@@ -49,7 +49,7 @@ classifiers = [
|
|
|
49
49
|
dependencies = [
|
|
50
50
|
"psutil",
|
|
51
51
|
"six>=1.9.0",
|
|
52
|
-
"testgres.common>=1.0.
|
|
52
|
+
"testgres.common>=1.0.1,<2.0.0",
|
|
53
53
|
]
|
|
54
54
|
|
|
55
55
|
[project.urls]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testgres.os_ops
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Testgres subsystem to work with OS
|
|
5
5
|
Author-email: Postgres Professional <testgres@postgrespro.ru>
|
|
6
6
|
License: PostgreSQL
|
|
@@ -19,12 +19,12 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.14
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries
|
|
21
21
|
Classifier: Topic :: Software Development :: Testing
|
|
22
|
-
Requires-Python: >=3.7.
|
|
22
|
+
Requires-Python: >=3.7.3
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
Requires-Dist: psutil
|
|
26
26
|
Requires-Dist: six>=1.9.0
|
|
27
|
-
Requires-Dist: testgres.common<2.0.0,>=1.0.
|
|
27
|
+
Requires-Dist: testgres.common<2.0.0,>=1.0.1
|
|
28
28
|
Dynamic: license-file
|
|
29
29
|
|
|
30
30
|
[](https://github.com/postgrespro/testgres.os_ops/actions/workflows/package-verification.yml)
|
|
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
|
{testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|