Skip to content

Commit 4a6518e

Browse files
committed
feat: deprecating this package
1. Add deprecation notice to README.md. 2. Add warning to `__init__.py`. 3. Modify `setup.py` URLs and notices. - TODO: check the contact email address.
1 parent 44c7c43 commit 4a6518e

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# chart-studio
2+
3+
> **This project is deprecated as of October 2025.**
4+
25
The chart-studio Python package contains utilities for interfacing with Plotly's Chart Studio service (both Chart Studio cloud and Chart Studio On-Prem).
36

47
Prior to plotly.py version 4, these Chart Studio utilities were included in the `plotly` package under the `plotly.plotly` module. As part of plotly.py version 4, the Chart Studio functionality was removed from the `plotly` package and released in this `chart-studio` package.

chart_studio/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
from __future__ import absolute_import
22
from chart_studio import plotly, dashboard_objs, grid_objs, session, tools
3+
import warnings
4+
5+
warnings.warn(
6+
"This package is deprecated as of October 2025.",
7+
DeprecationWarning,
8+
stacklevel=2
9+
)

setup.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ def readme():
1010

1111
setup(
1212
name="chart-studio",
13-
version="1.1.0",
13+
version="2.0.0",
1414
author="Chris P",
1515
author_email="chris@plot.ly",
16-
maintainer="Jon Mease",
17-
maintainer_email="jon@plot.ly",
18-
url="https://plot.ly/python/",
19-
project_urls={"Github": "https://github.com/plotly/chart-studio"},
20-
description="Utilities for interfacing with plotly's Chart Studio",
16+
maintainer="Plotly Libraries Team",
17+
maintainer_email="community@plot.ly",
18+
url="https://plot.ly/",
19+
project_urls={
20+
"Deprecated": "https://github.com/plotly/chart-studio/blob/main/README.md",
21+
"Github": "https://github.com/plotly/chart-studio"
22+
},
23+
description="DEPRECATED: utilities for interfacing with Plotly's Chart Studio",
2124
long_description=readme(),
2225
long_description_content_type="text/markdown",
2326
classifiers=[

0 commit comments

Comments
 (0)