yhttp-dbmanager 6.0.2__tar.gz → 6.2.0__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. {yhttp_dbmanager-6.0.2/yhttp_dbmanager.egg-info → yhttp_dbmanager-6.2.0}/PKG-INFO +2 -2
  2. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/setup.py +1 -1
  3. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp/ext/dbmanager/__init__.py +1 -1
  4. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0/yhttp_dbmanager.egg-info}/PKG-INFO +2 -2
  5. yhttp_dbmanager-6.2.0/yhttp_dbmanager.egg-info/requires.txt +2 -0
  6. yhttp_dbmanager-6.0.2/yhttp_dbmanager.egg-info/requires.txt +0 -2
  7. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/LICENSE +0 -0
  8. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/README.md +0 -0
  9. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/setup.cfg +0 -0
  10. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/tests/test_cli.py +0 -0
  11. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/tests/test_dbmanager.py +0 -0
  12. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/tests/test_dburi.py +0 -0
  13. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/tests/test_install.py +0 -0
  14. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp/ext/dbmanager/cli.py +0 -0
  15. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp/ext/dbmanager/dbmanager.py +0 -0
  16. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp/ext/dbmanager/install.py +0 -0
  17. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp/ext/dbmanager/uri.py +0 -0
  18. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp_dbmanager.egg-info/SOURCES.txt +0 -0
  19. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp_dbmanager.egg-info/dependency_links.txt +0 -0
  20. {yhttp_dbmanager-6.0.2 → yhttp_dbmanager-6.2.0}/yhttp_dbmanager.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yhttp-dbmanager
3
- Version: 6.0.2
3
+ Version: 6.2.0
4
4
  Summary: Database manager command line interface and API for yhttp.
5
5
  Home-page: http://github.com/yhttp/yhttp-dbmanager
6
6
  Author: Vahid Mardani
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
- Requires-Dist: yhttp<8,>=7.0.1
25
+ Requires-Dist: yhttp<8,>=7.15.1
26
26
  Requires-Dist: psycopg2
27
27
  Dynamic: author
28
28
  Dynamic: author-email
@@ -18,7 +18,7 @@ with open(
18
18
 
19
19
 
20
20
  dependencies = [
21
- 'yhttp >= 7.0.1, < 8',
21
+ 'yhttp >= 7.15.1, < 8',
22
22
  'psycopg2',
23
23
  ]
24
24
 
@@ -5,4 +5,4 @@ from .dbmanager import PostgresqlManager
5
5
  from .uri import DatabaseURI
6
6
 
7
7
 
8
- __version__ = '6.0.2'
8
+ __version__ = '6.2.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yhttp-dbmanager
3
- Version: 6.0.2
3
+ Version: 6.2.0
4
4
  Summary: Database manager command line interface and API for yhttp.
5
5
  Home-page: http://github.com/yhttp/yhttp-dbmanager
6
6
  Author: Vahid Mardani
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
- Requires-Dist: yhttp<8,>=7.0.1
25
+ Requires-Dist: yhttp<8,>=7.15.1
26
26
  Requires-Dist: psycopg2
27
27
  Dynamic: author
28
28
  Dynamic: author-email
@@ -0,0 +1,2 @@
1
+ yhttp<8,>=7.15.1
2
+ psycopg2
@@ -1,2 +0,0 @@
1
- yhttp<8,>=7.0.1
2
- psycopg2
File without changes