File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,18 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
os : [ubuntu-latest, macos-latest, windows-latest]
19
- python-version : [3.6 , 3.7 , 3.8, 3.9 ]
19
+ python-version : [3.7 , 3.8 , 3.9, "3.10" ]
20
20
21
21
steps :
22
22
- uses : actions/checkout@v2
23
23
- name : Set up Python ${{ matrix.python-version }}
24
24
uses : actions/setup-python@v2
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
- - name : Install pip
27
+ - name : Install pip
28
28
run : |
29
29
python -m pip install --upgrade pip
30
- - name : Install dependencies
30
+ - name : Install dependencies
31
31
run : |
32
32
scripts/install
33
33
- name : Run tests
Original file line number Diff line number Diff line change 30
30
),
31
31
classifiers = [
32
32
'Programming Language :: Python' ,
33
- 'Programming Language :: Python :: 3.6' ,
34
33
'Programming Language :: Python :: 3.7' ,
35
34
'Programming Language :: Python :: 3.8' ,
36
- 'Programming Language :: Python :: 3.9'
35
+ 'Programming Language :: Python :: 3.9' ,
36
+ 'Programming Language :: Python :: 3.10'
37
37
],
38
38
packages = ['frontend' ],
39
39
package_data = {
40
40
'templates' : ['*.html' ],
41
41
},
42
42
install_requires = [
43
43
'lxml' ,
44
- 'pyFlaskBootstrap4~=0.3.0 ' ,
45
- 'py-3rdparty-mediawiki~=0.5.1 ' ,
46
- 'pydevd' ,
44
+ 'pyFlaskBootstrap4~=0.5.1 ' ,
45
+ 'py-3rdparty-mediawiki~=0.6.3 ' ,
46
+ 'pydevd' ,
47
47
'beautifulsoup4'
48
-
49
48
],
50
49
zip_safe = False )
You can’t perform that action at this time.
0 commit comments