Skip to content

Commit 13b9850

Browse files
Merge pull request #284 from plivo/VT-8551
support for 3.13
2 parents 076ac92 + 1af14de commit 13b9850

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [4.58.1](https://github.com/plivo/plivo-python/tree/v4.58.1) (2024-12-19)
4+
**Compatibility - Extended support for Python 3.13**
5+
- Updated dependencies to ensure compatibility with Python 3.13.
6+
37
## [4.58.0](https://github.com/plivo/plivo-python/tree/v4.58.0) (2024-11-19)
48
**Feature - Transcription params added in MPC XML Element**
59
- Support for the `transcriptionUrl`, `transcript` parameter in MPC XML Element.
@@ -22,7 +26,7 @@
2226
- Added support for `dtmf` in GET and LIST verify session.
2327

2428
## [4.56.0](https://github.com/plivo/plivo-python/tree/v4.56.0) (2024-09-30)
25-
**Feature - Adding new param support for Number Masking session with single party **
29+
**Feature - Adding new param support for Number Masking session with single party**
2630
- Added `create_session_with_single_party`, `virtual_number_cooloff_period` and `force_pin_authentication` attributes in Masking Session
2731

2832
## [4.55.5](https://github.com/plivo/plivo-python/tree/v4.55.5) (2024-09-10)

plivo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '4.58.0'
2+
__version__ = '4.58.1'

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='plivo',
13-
version='4.58.0',
13+
version='4.58.1',
1414
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
1515
long_description=long_description,
1616
url='https://github.com/plivo/plivo-python',
@@ -34,14 +34,15 @@
3434
'Programming Language :: Python :: 3.8',
3535
'Programming Language :: Python :: 3.9',
3636
'Programming Language :: Python :: 3.11',
37+
'Programming Language :: Python :: 3.13',
3738
'Topic :: Software Development :: Libraries :: Python Modules',
3839
'Topic :: Communications :: Telephony',
3940
],
4041
install_requires=[
4142
'requests >= 2, < 3',
4243
'six >= 1, < 2',
4344
'decorator >= 5',
44-
'lxml >= 3, < 5',
45+
'lxml >= 3',
4546
'PyJWT'
4647
],
4748
keywords=['plivo', 'plivo xml', 'voice calls', 'sms'],

0 commit comments

Comments
 (0)