Skip to content

Commit 2da5f84

Browse files
Updated CLIENT_BASE_URL + Version Bump to 0.12.3 (#74)
* Updated CLIENT_BASE_URL + Version Bump to 0.12.3 * Bumped `pydantic` version >=2.12.0 and dropped `pydantic-core` dependency * Bumped `typing-extensions`>=4.14.1
1 parent b5d4206 commit 2da5f84

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

aimon/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(
8181
if base_url is None:
8282
base_url = os.environ.get("CLIENT_BASE_URL")
8383
if base_url is None:
84-
base_url = f"https://pbe-api.aimon.ai"
84+
base_url = f"https://sdkbe-production.aimon.ai"
8585

8686
super().__init__(
8787
version=__version__,
@@ -256,7 +256,7 @@ def __init__(
256256
if base_url is None:
257257
base_url = os.environ.get("CLIENT_BASE_URL")
258258
if base_url is None:
259-
base_url = f"https://pbe-api.aimon.ai"
259+
base_url = f"https://sdkbe-production.aimon.ai"
260260

261261
super().__init__(
262262
version=__version__,

aimon/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "aimon"
4-
__version__ = "0.12.2"
4+
__version__ = "0.12.3"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
name='aimon',
99
python_requires='>3.8.0',
1010
packages=find_packages(),
11-
version="0.12.2",
11+
version="0.12.3",
1212
install_requires=[
1313
"annotated-types~=0.6.0",
1414
"anyio~=4.9.0",
@@ -19,14 +19,14 @@
1919
"httpcore~=1.0.9",
2020
"httpx>=0.27.2,<1.0.0",
2121
"idna~=3.10",
22-
"pydantic~=2.11.3",
23-
"pydantic-core~=2.33.1",
22+
"pydantic>=2.12.0",
2423
"sniffio~=1.3.1",
25-
"typing-extensions~=4.13.2"
24+
"typing-extensions>=4.14.1"
2625
],
2726
author='AIMon',
2827
author_email='info@aimon.ai',
2928
description='The AIMon SDK that is used to interact with the AIMon API and the product.',
3029
long_description=long_description,
3130
long_description_content_type="text/markdown",
3231
)
32+

0 commit comments

Comments
 (0)