Skip to content

Commit

Permalink
Merge pull request #284 from plivo/VT-8551
Browse files Browse the repository at this point in the history
support for 3.13
  • Loading branch information
manjunath-plivo authored Dec 19, 2024
2 parents 076ac92 + 1af14de commit 13b9850
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion plivo/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '4.58.0'
__version__ = '4.58.1'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -34,14 +34,15 @@
'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',
],
install_requires=[
'requests >= 2, < 3',
'six >= 1, < 2',
'decorator >= 5',
'lxml >= 3, < 5',
'lxml >= 3',
'PyJWT'
],
keywords=['plivo', 'plivo xml', 'voice calls', 'sms'],
Expand Down

0 comments on commit 13b9850

Please sign in to comment.