Skip to content

Commit 3215650

Browse files
committed
version 1.5.5
1 parent 61b3db2 commit 3215650

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
1.5.5 - 2025-11-04
4+
* lower the supported python version to 3.7
5+
36
1.5.4 - 2025-11-04
47
* Refactor using typing.Union instead of operator |
58
* lower the supported python version to 3.9

CheckmarxPythonSDK/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.5.4'
1+
__version__ = '1.5.5'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
include_package_data=True,
2929
classifiers=[
3030
"Programming Language :: Python :: 3",
31-
'Programming Language :: Python :: 3.9',
31+
'Programming Language :: Python :: 3.7',
3232
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
3333
"Operating System :: OS Independent",
3434
'Programming Language :: Python :: Implementation :: CPython',
3535
'Programming Language :: Python :: Implementation :: PyPy'
3636
],
37-
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, >=3.9',
37+
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, >=3.7',
3838
install_requires=[
3939
"requests>=2.32.5",
4040
"requests-toolbelt>=1.0.0",

0 commit comments

Comments
 (0)