Skip to content

Commit 91b813a

Browse files
authored
Security updates (#17)
* Security updates * Change supported Python version
1 parent 95be167 commit 91b813a

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to the library will be documented in this file.
55
The format of the file is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this library adheres to [Semantic Versioning](http://semver.org/) as mentioned in [README.md][readme] file.
77

8+
## [Unreleased]
9+
10+
⚠ IMPORTANT NOTE: From this point onward Python 3.7 is no longer supported. The minimum supported version is Python 3.8 due to dependency updates.
11+
12+
### Security
13+
* Bumped werkzeug dependency from 2.1.2 to 3.0.3
14+
* Bumped pytest-httpserver dependency from 1.0.4 to 1.0.8
15+
816
## [ [4.0.0](https://github.com/infobip/infobip-api-python-client/releases/tag/4.0.0) ] - 2024-06-13
917
🎉 **NEW Major Version of `infobip_api_client`.**
1018

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["infobip", "sms", "tfa", "2fa", "calls", "voice", "sdk", "rest", "ap
1010
include = ["infobip_api_client/py.typed"]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.7"
13+
python = "^3.8"
1414

1515
urllib3 = ">= 1.25.3"
1616
python-dateutil = ">=2.8.2"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "infobip-api-python-client"
2525
VERSION = "4.0.0"
26-
PYTHON_REQUIRES = ">=3.7"
26+
PYTHON_REQUIRES = ">=3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 2.1.0",
2929
"python-dateutil",

test-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest==6.2.5
2-
pytest-httpserver==1.0.4
2+
pytest-httpserver==1.0.8
33
pytest-cases==3.6.8
44
pytest-cov==3.0.0
55
wheel==0.38.0
6-
werkzeug==2.1.2
6+
werkzeug==3.0.3

0 commit comments

Comments
 (0)