wherobots-python-dbapi 0.18.0__tar.gz → 0.19.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wherobots-python-dbapi
3
- Version: 0.18.0
3
+ Version: 0.19.0
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
@@ -96,6 +96,7 @@ into. Wherobots Cloud supports the following compute regions:
96
96
  * `aws-us-east-1`: AWS US East 1 (N. Virginia)
97
97
  * `aws-us-west-2`: AWS US West 2 (Oregon)
98
98
  * `aws-eu-west-1`: AWS EU West 1 (Ireland)
99
+ * `aws-ap-south-1`: AWS AP South 1 (Mumbai)
99
100
 
100
101
  > [!IMPORTANT]
101
102
  > The `aws-us-west-2` region is available to all Wherobots Cloud users
@@ -72,6 +72,7 @@ into. Wherobots Cloud supports the following compute regions:
72
72
  * `aws-us-east-1`: AWS US East 1 (N. Virginia)
73
73
  * `aws-us-west-2`: AWS US West 2 (Oregon)
74
74
  * `aws-eu-west-1`: AWS EU West 1 (Ireland)
75
+ * `aws-ap-south-1`: AWS AP South 1 (Mumbai)
75
76
 
76
77
  > [!IMPORTANT]
77
78
  > The `aws-us-west-2` region is available to all Wherobots Cloud users
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "wherobots-python-dbapi"
3
- version = "0.18.0"
3
+ version = "0.19.0"
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.8"
@@ -9,6 +9,9 @@ class Region(Enum):
9
9
  # EMEA
10
10
  AWS_EU_WEST_1 = "aws-eu-west-1"
11
11
 
12
+ # APAC
13
+ AWS_AP_SOUTH_1 = "aws-ap-south-1"
14
+
12
15
 
13
16
  _NAME_TO_ENUM = {region.value: region for region in Region}
14
17