File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ cloud-managed platform. Meraki generates the library based on dashboard API's Op
66the latest API releases, and provides the full source code for the library including the tools used to generate the
77library, if you are participating in the Early Access program or would like to contribute to the development of the
88library. Meraki welcomes constructive pull requests that maintain backwards compatibility with prior versions. The
9- library requires Python 3.8 +, receives support from the community, and you can install it
9+ library requires Python 3.10 +, receives support from the community, and you can install it
1010via [ PyPI] ( https://pypi.org/project/meraki/ ) :
1111
1212 pip install --upgrade meraki
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ def check_python_version():
77
88 if not (
99 int (platform .python_version_tuple ()[0 ]) == 3
10- and int (platform .python_version_tuple ()[1 ]) >= 8
10+ and int (platform .python_version_tuple ()[1 ]) >= 10
1111 ):
1212 message = (
13- f"This library requires Python 3.8 at minimum. Python versions 3.7 and below "
14- f"no longer receive security updates since reaching end of life and of support "
15- f"per the Python maintainers. Your interpreter version is: { platform .python_version ()} . "
13+ f"This library requires Python 3.10 at minimum. Python versions 3.8 and below are EOL as of October 2024 "
14+ f" or earlier. End of life Python versions no longer receive security updates since reaching end of life"
15+ f" and of support per the Python maintainers. Your interpreter version is: { platform .python_version ()} . "
1616 f"Please consult the readme at your convenience: https://github.com/meraki/dashboard-api-python "
1717 f"Additional details: "
1818 f"python_version_tuple()[0] = { platform .python_version_tuple ()[0 ]} ; "
You can’t perform that action at this time.
0 commit comments