Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 4.2.0 (2026-03-05)

Deprecation:

- Delighted is being sunset on June 30, 2026. This is the final release.
The package is now marked as inactive and will no longer be maintained.
See https://help.delighted.com/article/840-delighted-sunset-faq

## 4.1.0 (2021-05-12)

Features:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> **DEPRECATION NOTICE:** Delighted is being sunset on June 30, 2026. This package is deprecated and will no longer be maintained or receive updates. For more information, visit the [Delighted Sunset FAQ](https://help.delighted.com/article/840-delighted-sunset-faq).

---

[![Build Status](https://travis-ci.org/delighted/delighted-python.svg?branch=master)](https://travis-ci.org/delighted/delighted-python)

# Delighted API Python Client
Expand Down
12 changes: 11 additions & 1 deletion delighted/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
__title__ = 'delighted'
__version__ = '4.1.0'
__version__ = '4.2.0'
__author__ = 'Ben Turner'
__license__ = 'MIT'

import warnings
warnings.warn(
"Delighted is being sunset on June 30, 2026. This package is deprecated "
"and will no longer be maintained or receive updates. For more "
"information, visit the Delighted Sunset FAQ: "
"https://help.delighted.com/article/840-delighted-sunset-faq",
FutureWarning,
stacklevel=2,
)

from delighted.http_adapter import HTTPAdapter # noqa

api_key = None
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
author='Ben Turner, Robby Colvin',
author_email='ben@delighted.com',
author_email='hello@delighted.com',
url='https://delighted.com/',
packages=['delighted'],
package_dir={'delighted': 'delighted'},
Expand All @@ -28,7 +28,7 @@
test_requires=['mock', 'pytz', 'tzlocal'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
Expand Down