Skip to content

Commit e16baa4

Browse files
authored
relese(ci): Add Python 3.13 and 3.14 support (#89)
Co-authored by: @vincentdavis
1 parent b2145bd commit e16baa4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "sinch"
33
description = "Sinch SDK for Python programming language"
4-
version = "1.1.3"
4+
version = "1.1.4"
55
license = "Apache 2.0"
66
readme = "README.md"
77
authors = [
@@ -17,7 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
20-
"Programming Language :: Python :: 3.14",
20+
"Programming Language :: Python :: 3.13",
2121
"Programming Language :: Python :: 3.14",
2222
"Programming Language :: Python :: Implementation :: CPython",
2323
"Topic :: Software Development :: Libraries :: Python Modules",

sinch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
""" Sinch Python SDK
22
To access Sinch resources, use the Sync or Async version of the Sinch Client.
33
"""
4-
__version__ = "1.1.3"
4+
__version__ = "1.1.4"
55

66
from sinch.core.clients.sinch_client_sync import SinchClient
77
from sinch.core.clients.sinch_client_async import SinchClientAsync

0 commit comments

Comments
 (0)