From d6d00365b3742dc20621b52607df6a4a066608d2 Mon Sep 17 00:00:00 2001 From: JayaBharat-plivo Date: Tue, 10 Dec 2024 13:39:38 +0530 Subject: [PATCH 1/3] support for 3.13 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4c89acad..2adf852f 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Communications :: Telephony', ], @@ -41,7 +42,7 @@ 'requests >= 2, < 3', 'six >= 1, < 2', 'decorator >= 5', - 'lxml >= 3, < 5', + 'lxml >= 3, < 5.4', 'PyJWT' ], keywords=['plivo', 'plivo xml', 'voice calls', 'sms'], From 0a9b57468589bb491451e06a5f825bc637a97ee4 Mon Sep 17 00:00:00 2001 From: JayaBharat-plivo Date: Wed, 11 Dec 2024 12:44:28 +0530 Subject: [PATCH 2/3] Update lxml dependency in setup.py to allow versions >= 3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2adf852f..908c9430 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ 'requests >= 2, < 3', 'six >= 1, < 2', 'decorator >= 5', - 'lxml >= 3, < 5.4', + 'lxml >= 3', 'PyJWT' ], keywords=['plivo', 'plivo xml', 'voice calls', 'sms'], From 1af14de3c2eb22835fb090f9a7d4f07d719e5ee9 Mon Sep 17 00:00:00 2001 From: JayaBharat-plivo Date: Thu, 19 Dec 2024 12:05:57 +0530 Subject: [PATCH 3/3] Release version 4.58.1: Updated version in setup.py and version.py. Updated CHANGELOG.md to reflect changes. --- CHANGELOG.md | 6 +++++- plivo/version.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 724f2b27..4a060bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [4.58.1](https://github.com/plivo/plivo-python/tree/v4.58.1) (2024-12-19) +**Compatibility - Extended support for Python 3.13** +- Updated dependencies to ensure compatibility with Python 3.13. + ## [4.58.0](https://github.com/plivo/plivo-python/tree/v4.58.0) (2024-11-19) **Feature - Transcription params added in MPC XML Element** - Support for the `transcriptionUrl`, `transcript` parameter in MPC XML Element. @@ -22,7 +26,7 @@ - Added support for `dtmf` in GET and LIST verify session. ## [4.56.0](https://github.com/plivo/plivo-python/tree/v4.56.0) (2024-09-30) -**Feature - Adding new param support for Number Masking session with single party ** +**Feature - Adding new param support for Number Masking session with single party** - Added `create_session_with_single_party`, `virtual_number_cooloff_period` and `force_pin_authentication` attributes in Masking Session ## [4.55.5](https://github.com/plivo/plivo-python/tree/v4.55.5) (2024-09-10) diff --git a/plivo/version.py b/plivo/version.py index ca614615..5ba813fa 100644 --- a/plivo/version.py +++ b/plivo/version.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '4.58.0' +__version__ = '4.58.1' diff --git a/setup.py b/setup.py index 908c9430..f7181ee1 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='plivo', - version='4.58.0', + version='4.58.1', description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML', long_description=long_description, url='https://github.com/plivo/plivo-python',