testgres 1.13.2__tar.gz → 1.13.3__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-1.13.2/testgres.egg-info → testgres-1.13.3}/PKG-INFO +3 -3
- {testgres-1.13.2 → testgres-1.13.3}/pyproject.toml +3 -3
- {testgres-1.13.2 → testgres-1.13.3/testgres.egg-info}/PKG-INFO +3 -3
- {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/requires.txt +1 -1
- {testgres-1.13.2 → testgres-1.13.3}/LICENSE +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/README.md +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/setup.cfg +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/__init__.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/api.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/backup.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/cache.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/config.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/connection.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/consts.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/decorators.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/defaults.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/enums.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/exceptions.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/impl/port_manager__generic.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/impl/port_manager__this_host.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/logger.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/node.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/node_app.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/port_manager.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/pubsub.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/raise_error.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/standby.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/src/utils.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/SOURCES.txt +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/dependency_links.txt +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/top_level.txt +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_config.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_os_ops_common.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_os_ops_local.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_os_ops_remote.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_raise_error.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_testgres_common.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_testgres_local.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_testgres_remote.py +0 -0
- {testgres-1.13.2 → testgres-1.13.3}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testgres
|
|
3
|
-
Version: 1.13.
|
|
3
|
+
Version: 1.13.3
|
|
4
4
|
Summary: Testing utility for PostgreSQL and its extensions
|
|
5
5
|
Author-email: Postgres Professional <testgres@postgrespro.ru>
|
|
6
6
|
License: PostgreSQL
|
|
@@ -19,7 +19,7 @@ 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: pg8000
|
|
@@ -27,7 +27,7 @@ Requires-Dist: port-for>=0.4
|
|
|
27
27
|
Requires-Dist: six>=1.9.0
|
|
28
28
|
Requires-Dist: psutil
|
|
29
29
|
Requires-Dist: packaging
|
|
30
|
-
Requires-Dist: testgres.os_ops<3.0.0,>=2.0.
|
|
30
|
+
Requires-Dist: testgres.os_ops<3.0.0,>=2.0.2
|
|
31
31
|
Dynamic: license-file
|
|
32
32
|
|
|
33
33
|
[](https://github.com/postgrespro/testgres/actions/workflows/package-verification.yml)
|
|
@@ -11,7 +11,7 @@ exclude = [".git", "__pycache__", "env", "venv"]
|
|
|
11
11
|
|
|
12
12
|
[project]
|
|
13
13
|
name = "testgres"
|
|
14
|
-
version = "1.13.
|
|
14
|
+
version = "1.13.3"
|
|
15
15
|
|
|
16
16
|
description = "Testing utility for PostgreSQL and its extensions"
|
|
17
17
|
readme = "README.md"
|
|
@@ -30,7 +30,7 @@ keywords = [
|
|
|
30
30
|
'postgresql',
|
|
31
31
|
]
|
|
32
32
|
|
|
33
|
-
requires-python = ">=3.7.
|
|
33
|
+
requires-python = ">=3.7.3"
|
|
34
34
|
|
|
35
35
|
classifiers = [
|
|
36
36
|
"Intended Audience :: Developers",
|
|
@@ -54,7 +54,7 @@ dependencies = [
|
|
|
54
54
|
"six>=1.9.0",
|
|
55
55
|
"psutil",
|
|
56
56
|
"packaging",
|
|
57
|
-
"testgres.os_ops>=2.0.
|
|
57
|
+
"testgres.os_ops>=2.0.2,<3.0.0",
|
|
58
58
|
]
|
|
59
59
|
|
|
60
60
|
[project.urls]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testgres
|
|
3
|
-
Version: 1.13.
|
|
3
|
+
Version: 1.13.3
|
|
4
4
|
Summary: Testing utility for PostgreSQL and its extensions
|
|
5
5
|
Author-email: Postgres Professional <testgres@postgrespro.ru>
|
|
6
6
|
License: PostgreSQL
|
|
@@ -19,7 +19,7 @@ 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: pg8000
|
|
@@ -27,7 +27,7 @@ Requires-Dist: port-for>=0.4
|
|
|
27
27
|
Requires-Dist: six>=1.9.0
|
|
28
28
|
Requires-Dist: psutil
|
|
29
29
|
Requires-Dist: packaging
|
|
30
|
-
Requires-Dist: testgres.os_ops<3.0.0,>=2.0.
|
|
30
|
+
Requires-Dist: testgres.os_ops<3.0.0,>=2.0.2
|
|
31
31
|
Dynamic: license-file
|
|
32
32
|
|
|
33
33
|
[](https://github.com/postgrespro/testgres/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
|
|
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
|
|
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
|