Skip to content

Commit 21f6902

Browse files
authored
Merge pull request #79 from fosslight/dev_pythonVersion
Python version update
2 parents de0c69e + 55820bf commit 21f6902

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Set up Python
6262
uses: actions/setup-python@v4
6363
with:
64-
python-version: '3.7'
64+
python-version: '3.8'
6565
- name: Install dependencies
6666
run: |
6767
python -m pip install --upgrade pip

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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
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.7",
3130
"Programming Language :: Python :: 3.8",
32-
"Programming Language :: Python :: 3.9", ],
33-
python_requires=">=3.7",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11", ],
34+
python_requires=">=3.8",
3435
install_requires=required,
3536
package_data={'fosslight_scanner': ['resources/bom_compare.html']},
3637
entry_points={

0 commit comments

Comments
 (0)