Skip to content

Commit 4378054

Browse files
committed
drop python 3.7 support
1 parent cbf1695 commit 4378054

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.8.0
2+
current_version = 3.9.0
33
commit = True
44
tag = False
55

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
10+
python: ["3.8", "3.9", "3.10", "3.11"]
1111
os: ["ubuntu-latest", "macos-latest"]
1212

1313
steps:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ repos:
33
rev: v2.5.4
44
hooks:
55
- id: trailing-whitespace
6-
language_version: python3.7
6+
language_version: python3.11
77
- repo: https://github.com/ambv/black
88
rev: 18.6b4
99
hooks:
1010
- id: black
11-
language_version: python3.7
11+
language_version: python3.11

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 3.9.0
2+
- Dropped support for Python 3.7 as it's end-of-life and no longer receiving security updates
3+
14
# 3.8.0
25
- Adding support for the [Users component of the Vonage Application API](https://developer.vonage.com/en/api/application.v2#User)
36

setup.py

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

1010
setup(
1111
name="vonage",
12-
version="3.8.0",
12+
version="3.9.0",
1313
description="Vonage Server SDK for Python",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",
@@ -27,12 +27,11 @@
2727
"Deprecated",
2828
"pydantic>=1.10,==1.*",
2929
],
30-
python_requires=">=3.7",
30+
python_requires=">=3.8",
3131
tests_require=["cryptography>=2.3.1"],
3232
classifiers=[
3333
"Programming Language :: Python",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.7",
3635
"Programming Language :: Python :: 3.8",
3736
"Programming Language :: Python :: 3.9",
3837
"Programming Language :: Python :: 3.10",

src/vonage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .client import *
22
from .ncco_builder.ncco import *
33

4-
__version__ = "3.8.0"
4+
__version__ = "3.9.0"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3.7, py3.10, coverage-report
2+
envlist = py3.8, py3.11, coverage-report
33

44
[testenv]
55
deps = -r requirements.txt

0 commit comments

Comments
 (0)