Skip to content

Commit 1ad3bb7

Browse files
authored
chore: deprecate warning to compoiso-core (#1909)
2 parents 8e26247 + e61932c commit 1ad3bb7

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

python/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# ⚠️ DEPRECATION NOTICE
2+
3+
**This package (`composio-core`) is deprecated and will no longer receive updates.**
4+
5+
**Please migrate to the new package: [`composio`](https://pypi.org/project/composio/)**
6+
7+
```bash
8+
# Instead of:
9+
pip install composio-core
10+
11+
# Use:
12+
pip install composio
13+
```
14+
15+
The new `composio` package provides the same functionality with improved features and active maintenance.
16+
17+
---
18+
119
<p align="center">
220
<a href="https://composio.dev//#gh-dark-mode-only">
321
<img src="./docs/imgs/composio_white_font.svg" width="318px" alt="Composio logo" />

python/composio/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.20"
1+
__version__ = "0.7.21"

python/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,15 @@ def scan_for_package_data(
9090

9191
setup(
9292
name="composio_core",
93-
version="0.7.20",
93+
version="0.7.21",
9494
author="Utkarsh",
9595
author_email="utkarsh@composio.dev",
96-
description="Core package to act as a bridge between composio platform and other services.",
96+
description="[DEPRECATED] Core package to act as a bridge between composio platform and other services. Please use 'composio' instead.",
9797
long_description=(Path(__file__).parent / "README.md").read_text(encoding="utf-8"),
9898
long_description_content_type="text/markdown",
9999
url="https://github.com/composiohq/composio",
100100
classifiers=[
101+
"Development Status :: 7 - Inactive",
101102
"Programming Language :: Python :: 3",
102103
"License :: OSI Approved :: Apache Software License",
103104
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)