Skip to content

Commit 4f98f03

Browse files
committed
upgrades
1 parent 371ad8d commit 4f98f03

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
strategy:
1717
matrix:
1818
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"]
2020

2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v2
2525
with:
2626
python-version: ${{ matrix.python-version }}
27-
- name: Install pip
27+
- name: Install pip
2828
run: |
2929
python -m pip install --upgrade pip
30-
- name: Install dependencies
30+
- name: Install dependencies
3131
run: |
3232
scripts/install
3333
- name: Run tests

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,20 @@
3030
),
3131
classifiers=[
3232
'Programming Language :: Python',
33-
'Programming Language :: Python :: 3.6',
3433
'Programming Language :: Python :: 3.7',
3534
'Programming Language :: Python :: 3.8',
36-
'Programming Language :: Python :: 3.9'
35+
'Programming Language :: Python :: 3.9',
36+
'Programming Language :: Python :: 3.10'
3737
],
3838
packages=['frontend'],
3939
package_data={
4040
'templates': ['*.html'],
4141
},
4242
install_requires=[
4343
'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',
4747
'beautifulsoup4'
48-
4948
],
5049
zip_safe=False)

0 commit comments

Comments
 (0)