Skip to content

Commit f463fba

Browse files
authored
Merge pull request #45 from fosslight/python
Change the required version of Python to 3.7
2 parents 7b5b71b + daccd51 commit f463fba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
python-version: [3.6]
38+
python-version: [3.7, 3.8]
3939
steps:
4040
- uses: actions/checkout@v2
4141
- name: Set up Python ${{ matrix.python-version }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ FOSSLight Scanner needs a Python 3.6+.
4747
## 🎉 How to install
4848

4949

50-
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.
50+
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.
5151

5252
```
5353
$ pip3 install fosslight_scanner

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
download_url='https://github.com/fosslight/fosslight_scanner',
2828
classifiers=['License :: OSI Approved :: Apache Software License',
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.6",
3130
"Programming Language :: Python :: 3.7",
3231
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9", ],
33+
python_requires=">=3.7",
3434
install_requires=required,
3535
package_data={'fosslight_scanner': ['resources/bom_compare.html']},
3636
entry_points={

0 commit comments

Comments
 (0)