From daccd518c369697808136b0fff420c09700a71f5 Mon Sep 17 00:00:00 2001 From: Soim Kim Date: Thu, 1 Sep 2022 11:16:32 +0900 Subject: [PATCH] Change the required version of Python to 3.7 --- .github/workflows/pull-request.yml | 2 +- README.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f731b50..c8ea240 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6] + python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index a73d5a1..babfe21 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ FOSSLight Scanner needs a Python 3.6+. ## 🎉 How to install -It can be installed using pip3. It is recommended to install it in the [python 3.6 + virtualenv]([etc/guide_virtualenv.md](https://fosslight.org/fosslight-guide-en/scanner/etc/guide_virtualenv.html)) environment. +It can be installed using pip3. It is recommended to install it in the [python 3.7 + virtualenv]([etc/guide_virtualenv.md](https://fosslight.org/fosslight-guide-en/scanner/etc/guide_virtualenv.html)) environment. ``` $ pip3 install fosslight_scanner diff --git a/setup.py b/setup.py index 09fa99e..3ee9c90 100644 --- a/setup.py +++ b/setup.py @@ -27,10 +27,10 @@ download_url='https://github.com/fosslight/fosslight_scanner', classifiers=['License :: OSI Approved :: Apache Software License', "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", ], + python_requires=">=3.7", install_requires=required, package_data={'fosslight_scanner': ['resources/bom_compare.html']}, entry_points={