Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for 3.13 #284

Merged
merged 3 commits into from
Dec 19, 2024
Merged
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
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
Loading