[python] Update python versions (#8042)

* Remove redundant encoding definitions

UTF-8 is already the default encoding in Python 3.

* Remove Python3.4 related requirements

* Remove dead Python version 3.5

* Add Python 3.9 to CI and test configs

* Update petstore example
This commit is contained in:
Ülgen Sarıkavak
2020-12-07 23:07:35 +03:00
committed by GitHub
parent 35d616c9af
commit e00ac502f1
243 changed files with 32 additions and 474 deletions

View File

@@ -1,5 +1,3 @@
# coding: utf-8
"""
OpenAPI Petstore
@@ -36,7 +34,7 @@ setup(
author_email="team@openapitools.org",
url="",
keywords=["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"],
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,