Skip to content

Commit

Permalink
drop python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkahan committed Aug 21, 2023
1 parent cbf1695 commit 4378054
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.8.0
current_version = 3.9.0
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11"]
os: ["ubuntu-latest", "macos-latest"]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ repos:
rev: v2.5.4
hooks:
- id: trailing-whitespace
language_version: python3.7
language_version: python3.11
- repo: https://github.com/ambv/black
rev: 18.6b4
hooks:
- id: black
language_version: python3.7
language_version: python3.11
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 3.9.0
- Dropped support for Python 3.7 as it's end-of-life and no longer receiving security updates

# 3.8.0
- Adding support for the [Users component of the Vonage Application API](https://developer.vonage.com/en/api/application.v2#User)

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="vonage",
version="3.8.0",
version="3.9.0",
description="Vonage Server SDK for Python",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -27,12 +27,11 @@
"Deprecated",
"pydantic>=1.10,==1.*",
],
python_requires=">=3.7",
python_requires=">=3.8",
tests_require=["cryptography>=2.3.1"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion src/vonage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .client import *
from .ncco_builder.ncco import *

__version__ = "3.8.0"
__version__ = "3.9.0"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3.7, py3.10, coverage-report
envlist = py3.8, py3.11, coverage-report

[testenv]
deps = -r requirements.txt
Expand Down

0 comments on commit 4378054

Please sign in to comment.