1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-24 06:59:52 +01:00

Drop werkzeug version to support Python 3.7-3.11

This commit is contained in:
Tessa Walsh 2024-04-01 13:22:44 -04:00
parent 930c901f00
commit ea05caa4df
4 changed files with 6 additions and 4 deletions

View File

@ -8,7 +8,7 @@ jobs:
strategy: strategy:
max-parallel: 3 max-parallel: 3
matrix: matrix:
python-version: ['3.8', '3.9', '3.10', '3.11'] python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps: steps:
- name: checkout - name: checkout

View File

@ -6,7 +6,7 @@ jinja2>=3.1.2
surt>=0.3.1 surt>=0.3.1
brotlipy brotlipy
pyyaml pyyaml
werkzeug==2.3.7 werkzeug==2.2.3
webencodings webencodings
gevent==23.9.0 gevent==23.9.0
greenlet>=2.0.2,<3.0 greenlet>=2.0.2,<3.0

View File

@ -113,7 +113,7 @@ setup(
"translate_toolkit" "translate_toolkit"
], ],
}, },
python_requires='>=3.8', python_requires='>=3.7,<3.12',
tests_require=load_requirements("test_requirements.txt"), tests_require=load_requirements("test_requirements.txt"),
cmdclass={'test': PyTest}, cmdclass={'test': PyTest},
test_suite='', test_suite='',
@ -133,6 +133,7 @@ setup(
'License :: OSI Approved :: GNU General Public License (GPL)', 'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',

View File

@ -4,10 +4,11 @@ testpaths =
tests tests
[tox] [tox]
envlist = py38, py39, py310, py311 envlist = py37, py38, py39, py310, py311
[gh-actions] [gh-actions]
python = python =
3.7: py37
3.8: py38 3.8: py38
3.9: py39 3.9: py39
3.10: py310 3.10: py310