wherobots-python-dbapi 0.25.1__tar.gz → 0.25.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 (17) hide show
  1. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/PKG-INFO +2 -2
  2. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/pyproject.toml +2 -2
  3. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/.gitignore +0 -0
  4. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/LICENSE +0 -0
  5. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/README.md +0 -0
  6. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/__init__.py +0 -0
  7. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/__init__.py +0 -0
  8. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/connection.py +0 -0
  9. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/constants.py +0 -0
  10. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/cursor.py +0 -0
  11. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/driver.py +0 -0
  12. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/errors.py +0 -0
  13. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/models.py +0 -0
  14. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/region.py +0 -0
  15. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/runtime.py +0 -0
  16. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/session_type.py +0 -0
  17. {wherobots_python_dbapi-0.25.1 → wherobots_python_dbapi-0.25.2}/wherobots/db/types.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wherobots-python-dbapi
3
- Version: 0.25.1
3
+ Version: 0.25.2
4
4
  Summary: Python DB-API driver for Wherobots DB
5
5
  Project-URL: Homepage, https://github.com/wherobots/wherobots-python-dbapi-driver
6
6
  Project-URL: Tracker, https://github.com/wherobots/wherobots-python-dbapi-driver/issues
@@ -13,7 +13,7 @@ Requires-Dist: packaging
13
13
  Requires-Dist: pandas
14
14
  Requires-Dist: pandas-stubs>=2.0.3.230814
15
15
  Requires-Dist: pyarrow>=14.0.2
16
- Requires-Dist: requests>=2.32.5
16
+ Requires-Dist: requests>=2.32.3
17
17
  Requires-Dist: strenum<0.5,>=0.4.15
18
18
  Requires-Dist: tenacity>=8.2.3
19
19
  Requires-Dist: types-requests>=2.32.0.20241016
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "wherobots-python-dbapi"
3
- version = "0.25.1"
3
+ version = "0.25.2"
4
4
  description = "Python DB-API driver for Wherobots DB"
5
5
  authors = [{ name = "Maxime Petazzoni", email = "max@wherobots.com" }]
6
6
  requires-python = ">=3.10, <4"
@@ -8,7 +8,7 @@ readme = "README.md"
8
8
  license = "Apache-2.0"
9
9
  dependencies = [
10
10
  "packaging",
11
- "requests>=2.32.5",
11
+ "requests>=2.32.3",
12
12
  "websockets>=13.0",
13
13
  "tenacity>=8.2.3",
14
14
  "cbor2>=5.6.3",