Skip to content

Commit 845f09e

Browse files
authored
Update python support ver 3.10-3.12 (#262)
Signed-off-by: 석지영/책임연구원/SW공학(연)Open Source TP <[email protected]>
1 parent 2424589 commit 845f09e

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/publish-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ jobs:
6060
- uses: actions/checkout@v3
6161
with:
6262
ref: main
63-
- name: Set up Python 3.8
63+
- name: Set up Python3
6464
uses: actions/setup-python@v4
6565
with:
66-
python-version: '3.8'
66+
python-version: '3.11'
6767
- name: Install dependencies
6868
run: |
6969
python -m pip install --upgrade pip
@@ -93,10 +93,10 @@ jobs:
9393
- uses: actions/checkout@v3
9494
with:
9595
ref: main
96-
- name: Set up Python 3.8
96+
- name: Set up Python3
9797
uses: actions/setup-python@v4
9898
with:
99-
python-version: '3.8'
99+
python-version: '3.11'
100100
- name: Install dependencies
101101
run: |
102102
python -m pip install --upgrade pip

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.8]
19+
python-version: ['3.10', '3.11', '3.12']
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: windows-latest
3737
strategy:
3838
matrix:
39-
python-version: [3.8]
39+
python-version: ['3.10', '3.11', '3.12']
4040
steps:
4141
- uses: actions/checkout@v3
4242
- name: Set up Python ${{ matrix.python-version }}
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: macos-latest
5555
strategy:
5656
matrix:
57-
python-version: [3.8]
57+
python-version: ['3.10', '3.11', '3.12']
5858
steps:
5959
- uses: actions/checkout@v3
6060
- name: Set up Python ${{ matrix.python-version }}

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
flake8==3.9.2
2-
pyinstaller>=6.10.0
3-
tox>=4.18.1
1+
flake8
2+
pyinstaller
3+
tox
44
pytest
55
pytest-cov
66
pytest-flake8

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
download_url='https://github.com/fosslight/fosslight_dependency_scanner',
4848
classifiers=['License :: OSI Approved :: Apache Software License',
4949
"Programming Language :: Python :: 3",
50-
"Programming Language :: Python :: 3.8",
51-
"Programming Language :: Python :: 3.9",
5250
"Programming Language :: Python :: 3.10",
53-
"Programming Language :: Python :: 3.11", ],
51+
"Programming Language :: Python :: 3.11",
52+
"Programming Language :: Python :: 3.12", ],
53+
python_requires='>=3.10,<3.13',
5454
install_requires=required,
5555
package_data={_PACKAEG_NAME: [os.path.join(_LICENSE_DIR, '*')]},
5656
include_package_data=True,

0 commit comments

Comments
 (0)