Compare commits

..

3 Commits

Author SHA1 Message Date
Sebastian Lohff 2a19a29aa1 Release 0.5.4
1 year ago
Sebastian Lohff 1d12ee4704 Drop python3.6 support
1 year ago
Sebastian Lohff 876d190703 Ignore python3.11 cgi deprecation warning
1 year ago

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8, 3.9]
python: [2.7, 3.7, 3.8, 3.9, "3.10", 3.11]
steps:
- uses: actions/checkout@v2

@ -8,7 +8,8 @@ servefile changelog
* code reformatting for better maintainability
* upload to uploaddir instead of /tmp for large files
* python3.11 support
* add python3.10 / python3.11 support
* drop python3.6 support
2021-11-18 v0.5.3

@ -38,7 +38,6 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',

@ -1,5 +1,5 @@
[tox]
envlist = py27,py36,py37,py38,py39,pep8
envlist = py27,py37,py38,py39,py310,py311,pep8
[testenv]
deps =

Loading…
Cancel
Save