Skip to content

Commit

Permalink
upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Nov 1, 2022
1 parent 371ad8d commit 4f98f03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
- name: Install dependencies
run: |
scripts/install
- name: Run tests
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,20 @@
),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
packages=['frontend'],
package_data={
'templates': ['*.html'],
},
install_requires=[
'lxml',
'pyFlaskBootstrap4~=0.3.0',
'py-3rdparty-mediawiki~=0.5.1',
'pydevd',
'pyFlaskBootstrap4~=0.5.1',
'py-3rdparty-mediawiki~=0.6.3',
'pydevd',
'beautifulsoup4'

],
zip_safe=False)

0 comments on commit 4f98f03

Please sign in to comment.