Skip to content

Commit 1b6ef07

Browse files
mmohanty-telesignMousumiMohanty
authored andcommitted
Pull request #23: feature/EOA-8174-Fixed-deprecation-warning
Merge in SDK/python_telesign_enterprise from feature/EOA-8174 to developer Squashed commit of the following: commit 7750978692cc7daa25610aaf841457139d9db4ea Author: MousumiMohanty <@telesign.com> Date: Fri Dec 12 13:21:07 2025 +0530 changed the release file text commit bdd40fa95d933bb3f31d8567c3c09c38f6d48f11 Author: MousumiMohanty <@telesign.com> Date: Thu Dec 11 16:41:05 2025 +0530 Fixed deprecation warning
1 parent 08f3ffe commit 1b6ef07

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

RELEASE

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
3.0.1
2+
- Removed deprecated pkg_resources.declare_namespace() usage.
3+
- Updated classifiers to Python 3.7–3.12.
4+
15
3.0.0
26
- Added full support for the App Verify API, including reporting unknown caller ID issues and timeout events
37
- Removed Legacy PID Contact

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version = "3.0.0"
3+
version = "3.0.1"
44

55
try:
66
with open("README") as f:
@@ -26,12 +26,17 @@
2626
"Programming Language :: Python :: 3.5",
2727
"Programming Language :: Python :: 3.6",
2828
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
2934
],
3035
long_description=readme_content,
3136
keywords='telesign, sms, voice, mobile, authentication, identity, messaging',
3237
author='TeleSign Corp.',
3338
author_email='support@telesign.com',
3439
url="https://github.com/telesign/python_telesign",
35-
install_requires=['telesign >=2.2.1, <=3.0.0'],
40+
install_requires=['telesign >=2.2.1, <=3.0.1'],
3641
packages=find_packages(exclude=['test', 'test.*', 'examples', 'examples.*']),
3742
)

telesignenterprise/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
from pkg_resources import get_distribution
22

3-
__import__('pkg_resources').declare_namespace(__name__)
4-
53
__version__ = get_distribution("telesignenterprise").version
64
__author__ = "TeleSign"
75
__copyright__ = "Copyright 2017, TeleSign Corp."

0 commit comments

Comments
 (0)