Skip to content

Commit 8aa4122

Browse files
authored
Merge pull request #90 from fosslight/python_version
Change the required version of Python to 3.7
2 parents d2abb30 + 343622b commit 8aa4122

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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, 3.7]
38+
python-version: [3.7, 3.8]
3939
steps:
4040
- uses: actions/checkout@v2
4141
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
download_url='https://github.com/fosslight/fosslight_source_scanner',
2727
classifiers=['License :: OSI Approved :: Apache Software License',
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.6",
3029
"Programming Language :: Python :: 3.7",
3130
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9", ],
32+
python_requires=">=3.7",
3333
install_requires=required,
3434
extras_require={":python_version>'3.6'": ["scanoss>=0.7.0"],
3535
":python_version<'3.7'": ["dataclasses", "scanoss"]},

0 commit comments

Comments
 (0)