From 105c2635f786920f0c09aca35eb8eef10266d26b Mon Sep 17 00:00:00 2001 From: Wonjae Park Date: Thu, 12 Oct 2023 16:26:29 +0900 Subject: [PATCH] Remove python 3.7 and add 3.10, 3.11 Signed-off-by: Wonjae Park --- requirements.txt | 3 ++- setup.py | 10 ++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index da5a818..023159f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ -pyparsing<=3.0.4;python_full_version<"3.6.8" +pyparsing scancode-toolkit==32.0.6 +scanoss XlsxWriter typecode-libmagic fosslight_util>=1.4.28 diff --git a/setup.py b/setup.py index b0743a2..772b805 100644 --- a/setup.py +++ b/setup.py @@ -26,14 +26,12 @@ download_url='https://github.com/fosslight/fosslight_source_scanner', classifiers=['License :: OSI Approved :: Apache Software License', "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", ], - python_requires=">=3.7", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], + python_requires=">=3.8", install_requires=required, - extras_require={":python_version>'3.7'": ["scanoss>=0.7.0"], - ":python_version<'3.7'": ["dataclasses", "scanoss"], - ":python_version=='3.7'": ["scanoss>=0.7.0", "fingerprints==1.0.3"]}, entry_points={ "console_scripts": [ "fosslight_convert = fosslight_source.convert_scancode:main",