File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ jobs:
60
60
- uses : actions/checkout@v3
61
61
with :
62
62
ref : main
63
- - name : Set up Python 3.8
63
+ - name : Set up Python3
64
64
uses : actions/setup-python@v4
65
65
with :
66
- python-version : ' 3.8 '
66
+ python-version : ' 3.11 '
67
67
- name : Install dependencies
68
68
run : |
69
69
python -m pip install --upgrade pip
@@ -93,10 +93,10 @@ jobs:
93
93
- uses : actions/checkout@v3
94
94
with :
95
95
ref : main
96
- - name : Set up Python 3.8
96
+ - name : Set up Python3
97
97
uses : actions/setup-python@v4
98
98
with :
99
- python-version : ' 3.8 '
99
+ python-version : ' 3.11 '
100
100
- name : Install dependencies
101
101
run : |
102
102
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 16
16
runs-on : ubuntu-latest
17
17
strategy :
18
18
matrix :
19
- python-version : [3.8 ]
19
+ python-version : ['3.10', '3.11', '3.12' ]
20
20
steps :
21
21
- uses : actions/checkout@v3
22
22
- name : Set up Python ${{ matrix.python-version }}
36
36
runs-on : windows-latest
37
37
strategy :
38
38
matrix :
39
- python-version : [3.8 ]
39
+ python-version : ['3.10', '3.11', '3.12' ]
40
40
steps :
41
41
- uses : actions/checkout@v3
42
42
- name : Set up Python ${{ matrix.python-version }}
54
54
runs-on : macos-latest
55
55
strategy :
56
56
matrix :
57
- python-version : [3.8 ]
57
+ python-version : ['3.10', '3.11', '3.12' ]
58
58
steps :
59
59
- uses : actions/checkout@v3
60
60
- name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 1
- flake8 == 3.9.2
2
- pyinstaller >= 6.10.0
3
- tox >= 4.18.1
1
+ flake8
2
+ pyinstaller
3
+ tox
4
4
pytest
5
5
pytest-cov
6
6
pytest-flake8
Original file line number Diff line number Diff line change 47
47
download_url = 'https://github.com/fosslight/fosslight_dependency_scanner' ,
48
48
classifiers = ['License :: OSI Approved :: Apache Software License' ,
49
49
"Programming Language :: Python :: 3" ,
50
- "Programming Language :: Python :: 3.8" ,
51
- "Programming Language :: Python :: 3.9" ,
52
50
"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' ,
54
54
install_requires = required ,
55
55
package_data = {_PACKAEG_NAME : [os .path .join (_LICENSE_DIR , '*' )]},
56
56
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments