Drop python 3.8 support python 3.13 in python generator (#20909)

* Drop support for python 3.8 and add support for 3.13 in python generator templates

* Update docs

* Test samples without python 3.8 and with 3.13

* Generate samples
This commit is contained in:
Youri Westerman
2025-03-23 11:10:32 +01:00
committed by GitHub
parent c749919812
commit 73b6b7084f
33 changed files with 48 additions and 48 deletions

View File

@@ -22,7 +22,7 @@ from setuptools import setup, find_packages # noqa: H301
# http://pypi.python.org/pypi/setuptools
NAME = "petstore-api"
VERSION = "1.0.0"
PYTHON_REQUIRES = ">= 3.8"
PYTHON_REQUIRES = ">= 3.9"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"python-dateutil >= 2.8.2",