From 38acb4eba27e7537f301ff98773bbdb08d7db169 Mon Sep 17 00:00:00 2001 From: almogch Date: Thu, 29 Feb 2024 09:30:18 +0200 Subject: [PATCH 1/2] feature(setup) - drop python 3.6 and 3.7 --- CHANGES | 4 ++++ setup.py | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 7fb53da..1eb625f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1.10.5 +----- +- Drop python 3.6 and python 3.7 support, add python 3.12 support + 1.10.4 ----- - Add "--max-concurrent" flag for uploading endpoint scans diff --git a/setup.py b/setup.py index 3222c46..b0a2851 100644 --- a/setup.py +++ b/setup.py @@ -35,12 +35,11 @@ def rel(*xs): description='Client library for Intezer cloud service', author='Intezer Labs ltd.', classifiers=[ - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11' + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12' ], keywords='intezer', packages=['intezer_analyze_cli'], From c6a7ec60a07bdf4ebd95da74e8d605534d833b22 Mon Sep 17 00:00:00 2001 From: almogch Date: Thu, 29 Feb 2024 09:31:06 +0200 Subject: [PATCH 2/2] feature(setup) - drop python 3.6 and 3.7 --- intezer_analyze_cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intezer_analyze_cli/__init__.py b/intezer_analyze_cli/__init__.py index b436016..420b4d0 100644 --- a/intezer_analyze_cli/__init__.py +++ b/intezer_analyze_cli/__init__.py @@ -1 +1 @@ -__version__ = '1.10.4' +__version__ = '1.10.5'