Skip to content

Commit 038d43b

Browse files
jackaldenryanclaude
andcommitted
Deprecate V2 SDK
- Add deprecation warning banner to README - Update pyproject.toml with deprecation notice in description - Bump version to 2.22.2 - Add "Development Status :: 7 - Inactive" classifier - Add runtime DeprecationWarning when package is imported Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f4ab79c commit 038d43b

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> **⚠️ DEPRECATED: This version (v2.x) of zep-cloud is deprecated and will be removed on February 1, 2026.**
2+
>
3+
> **Please upgrade to v3.** See the [migration guide](https://docs.getzep.com/zep-v2-to-v3-migration) for details.
14
25
[![Release to PyPI](https://github.com/getzep/zep-python/actions/workflows/release.yml/badge.svg)](https://github.com/getzep/zep-python/actions/workflows/release.yml) ![GitHub](https://img.shields.io/github/license/getzep/zep-python?color=blue) [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/fern)
36

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tool.poetry]
22
name = "zep-cloud"
3-
version = "2.22.1"
4-
description = ""
3+
version = "2.22.2"
4+
description = "[DEPRECATED] Please upgrade to v3. See migration guide: https://docs.getzep.com/zep-v2-to-v3-migration"
55
readme = "README.md"
66
authors = []
77
packages = [{ include = "zep_cloud", from = "src" }]
88

99
classifiers = [
10+
"Development Status :: 7 - Inactive",
1011
"Intended Audience :: Developers",
1112
"Programming Language :: Python",
1213
"Programming Language :: Python :: 3",

src/zep_cloud/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3+
import warnings
4+
warnings.warn(
5+
"DEPRECATED: zep-cloud v2.x is deprecated and will be removed on February 1, 2026. "
6+
"Please upgrade to v3. See migration guide: https://docs.getzep.com/zep-v2-to-v3-migration",
7+
DeprecationWarning,
8+
stacklevel=2
9+
)
10+
311
from .types import (
412
AddMemoryResponse,
513
AddTripleResponse,

0 commit comments

Comments
 (0)