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.
Files changed (40) hide show
  1. {testgres-1.13.2/testgres.egg-info → testgres-1.13.3}/PKG-INFO +3 -3
  2. {testgres-1.13.2 → testgres-1.13.3}/pyproject.toml +3 -3
  3. {testgres-1.13.2 → testgres-1.13.3/testgres.egg-info}/PKG-INFO +3 -3
  4. {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/requires.txt +1 -1
  5. {testgres-1.13.2 → testgres-1.13.3}/LICENSE +0 -0
  6. {testgres-1.13.2 → testgres-1.13.3}/README.md +0 -0
  7. {testgres-1.13.2 → testgres-1.13.3}/setup.cfg +0 -0
  8. {testgres-1.13.2 → testgres-1.13.3}/src/__init__.py +0 -0
  9. {testgres-1.13.2 → testgres-1.13.3}/src/api.py +0 -0
  10. {testgres-1.13.2 → testgres-1.13.3}/src/backup.py +0 -0
  11. {testgres-1.13.2 → testgres-1.13.3}/src/cache.py +0 -0
  12. {testgres-1.13.2 → testgres-1.13.3}/src/config.py +0 -0
  13. {testgres-1.13.2 → testgres-1.13.3}/src/connection.py +0 -0
  14. {testgres-1.13.2 → testgres-1.13.3}/src/consts.py +0 -0
  15. {testgres-1.13.2 → testgres-1.13.3}/src/decorators.py +0 -0
  16. {testgres-1.13.2 → testgres-1.13.3}/src/defaults.py +0 -0
  17. {testgres-1.13.2 → testgres-1.13.3}/src/enums.py +0 -0
  18. {testgres-1.13.2 → testgres-1.13.3}/src/exceptions.py +0 -0
  19. {testgres-1.13.2 → testgres-1.13.3}/src/impl/port_manager__generic.py +0 -0
  20. {testgres-1.13.2 → testgres-1.13.3}/src/impl/port_manager__this_host.py +0 -0
  21. {testgres-1.13.2 → testgres-1.13.3}/src/logger.py +0 -0
  22. {testgres-1.13.2 → testgres-1.13.3}/src/node.py +0 -0
  23. {testgres-1.13.2 → testgres-1.13.3}/src/node_app.py +0 -0
  24. {testgres-1.13.2 → testgres-1.13.3}/src/port_manager.py +0 -0
  25. {testgres-1.13.2 → testgres-1.13.3}/src/pubsub.py +0 -0
  26. {testgres-1.13.2 → testgres-1.13.3}/src/raise_error.py +0 -0
  27. {testgres-1.13.2 → testgres-1.13.3}/src/standby.py +0 -0
  28. {testgres-1.13.2 → testgres-1.13.3}/src/utils.py +0 -0
  29. {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/SOURCES.txt +0 -0
  30. {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/dependency_links.txt +0 -0
  31. {testgres-1.13.2 → testgres-1.13.3}/testgres.egg-info/top_level.txt +0 -0
  32. {testgres-1.13.2 → testgres-1.13.3}/tests/test_config.py +0 -0
  33. {testgres-1.13.2 → testgres-1.13.3}/tests/test_os_ops_common.py +0 -0
  34. {testgres-1.13.2 → testgres-1.13.3}/tests/test_os_ops_local.py +0 -0
  35. {testgres-1.13.2 → testgres-1.13.3}/tests/test_os_ops_remote.py +0 -0
  36. {testgres-1.13.2 → testgres-1.13.3}/tests/test_raise_error.py +0 -0
  37. {testgres-1.13.2 → testgres-1.13.3}/tests/test_testgres_common.py +0 -0
  38. {testgres-1.13.2 → testgres-1.13.3}/tests/test_testgres_local.py +0 -0
  39. {testgres-1.13.2 → testgres-1.13.3}/tests/test_testgres_remote.py +0 -0
  40. {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.2
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.17
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.1
30
+ Requires-Dist: testgres.os_ops<3.0.0,>=2.0.2
31
31
  Dynamic: license-file
32
32
 
33
33
  [![CI Status](https://img.shields.io/github/actions/workflow/status/postgrespro/testgres/.github/workflows/package-verification.yml?label=CI)](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.2"
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.17"
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.1,<3.0.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.2
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.17
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.1
30
+ Requires-Dist: testgres.os_ops<3.0.0,>=2.0.2
31
31
  Dynamic: license-file
32
32
 
33
33
  [![CI Status](https://img.shields.io/github/actions/workflow/status/postgrespro/testgres/.github/workflows/package-verification.yml?label=CI)](https://github.com/postgrespro/testgres/actions/workflows/package-verification.yml)
@@ -3,4 +3,4 @@ port-for>=0.4
3
3
  six>=1.9.0
4
4
  psutil
5
5
  packaging
6
- testgres.os_ops<3.0.0,>=2.0.1
6
+ testgres.os_ops<3.0.0,>=2.0.2
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