Drop python3.5 support
This commit is contained in:
parent
3249647c0b
commit
0b6284cec1
|
@ -13,6 +13,7 @@ Unreleased
|
||||||
SERVEFILE_SECONDARY_PORT
|
SERVEFILE_SECONDARY_PORT
|
||||||
* fixed broken redirect when filename contained umlauts or other characters
|
* fixed broken redirect when filename contained umlauts or other characters
|
||||||
that should have been quoted
|
that should have been quoted
|
||||||
|
* drop python3.5 support
|
||||||
|
|
||||||
|
|
||||||
2020-10-30 v0.5.1
|
2020-10-30 v0.5.1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -38,10 +38,10 @@ setup(
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
'Topic :: Communications',
|
'Topic :: Communications',
|
||||||
'Topic :: Communications :: File Sharing',
|
'Topic :: Communications :: File Sharing',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
|
|
Loading…
Reference in New Issue