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.
Files changed (20) hide show
  1. {testgres_os_ops-2.0.1/testgres.os_ops.egg-info → testgres_os_ops-2.0.2}/PKG-INFO +3 -3
  2. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/pyproject.toml +3 -3
  3. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2/testgres.os_ops.egg-info}/PKG-INFO +3 -3
  4. testgres_os_ops-2.0.2/testgres.os_ops.egg-info/requires.txt +3 -0
  5. testgres_os_ops-2.0.1/testgres.os_ops.egg-info/requires.txt +0 -3
  6. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/LICENSE +0 -0
  7. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/README.md +0 -0
  8. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/setup.cfg +0 -0
  9. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/exceptions.py +0 -0
  10. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/helpers.py +0 -0
  11. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/local_ops.py +0 -0
  12. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/os_ops.py +0 -0
  13. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/raise_error.py +0 -0
  14. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/src/remote_ops.py +0 -0
  15. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/SOURCES.txt +0 -0
  16. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/dependency_links.txt +0 -0
  17. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/testgres.os_ops.egg-info/top_level.txt +0 -0
  18. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/tests/test_os_ops_common.py +0 -0
  19. {testgres_os_ops-2.0.1 → testgres_os_ops-2.0.2}/tests/test_os_ops_local.py +0 -0
  20. {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.1
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.17
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.0
27
+ Requires-Dist: testgres.common<2.0.0,>=1.0.1
28
28
  Dynamic: license-file
29
29
 
30
30
  [![CI Status](https://img.shields.io/github/actions/workflow/status/postgrespro/testgres.os_ops/.github/workflows/package-verification.yml?label=CI)](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.1"
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.17"
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.0,<2.0.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.1
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.17
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.0
27
+ Requires-Dist: testgres.common<2.0.0,>=1.0.1
28
28
  Dynamic: license-file
29
29
 
30
30
  [![CI Status](https://img.shields.io/github/actions/workflow/status/postgrespro/testgres.os_ops/.github/workflows/package-verification.yml?label=CI)](https://github.com/postgrespro/testgres.os_ops/actions/workflows/package-verification.yml)
@@ -0,0 +1,3 @@
1
+ psutil
2
+ six>=1.9.0
3
+ testgres.common<2.0.0,>=1.0.1
@@ -1,3 +0,0 @@
1
- psutil
2
- six>=1.9.0
3
- testgres.common<2.0.0,>=1.0.0
File without changes