Skip to content

Commit 6e521e4

Browse files
authored
Merge pull request #21 from CZL-AI/release-please--branches--main--changes--next
release: 0.1.0-alpha.5
2 parents fab3ba1 + 4691943 commit 6e521e4

5 files changed

Lines changed: 12 additions & 8 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.4"
2+
".": "0.1.0-alpha.5"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.1.0-alpha.5 (2024-11-26)
4+
5+
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/CZL-AI/czlai-python/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
6+
7+
### Chores
8+
9+
* **internal:** codegen related update ([#20](https://github.com/CZL-AI/czlai-python/issues/20)) ([f43f77b](https://github.com/CZL-AI/czlai-python/commit/f43f77b7d711e7852c47a38f3d03f98cfb7a15be))
10+
311
## 0.1.0-alpha.4 (2024-11-22)
412

513
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/CZL-AI/czlai-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "czlai"
3-
version = "0.1.0-alpha.4"
3+
version = "0.1.0-alpha.5"
44
description = "The official Python library for the czlai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
@@ -14,7 +14,6 @@ dependencies = [
1414
"anyio>=3.5.0, <5",
1515
"distro>=1.7.0, <2",
1616
"sniffio",
17-
"cached-property; python_version < '3.8'",
1817
]
1918
requires-python = ">= 3.8"
2019
classifiers = [

src/czlai/_compat.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,6 @@ def __set_name__(self, owner: type[Any], name: str) -> None: ...
214214
# __set__ is not defined at runtime, but @cached_property is designed to be settable
215215
def __set__(self, instance: object, value: _T) -> None: ...
216216
else:
217-
try:
218-
from functools import cached_property as cached_property
219-
except ImportError:
220-
from cached_property import cached_property as cached_property
217+
from functools import cached_property as cached_property
221218

222219
typed_cached_property = cached_property

src/czlai/_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__ = "czlai"
4-
__version__ = "0.1.0-alpha.4" # x-release-please-version
4+
__version__ = "0.1.0-alpha.5" # x-release-please-version

0 commit comments

Comments
 (0)