File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed 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
6
6
the latest API releases, and provides the full source code for the library including the tools used to generate the
7
7
library, if you are participating in the Early Access program or would like to contribute to the development of the
8
8
library. 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
10
10
via [ PyPI] ( https://pypi.org/project/meraki/ ) :
11
11
12
12
pip install --upgrade meraki
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ def check_python_version():
7
7
8
8
if not (
9
9
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
11
11
):
12
12
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 ()} . "
16
16
f"Please consult the readme at your convenience: https://github.com/meraki/dashboard-api-python "
17
17
f"Additional details: "
18
18
f"python_version_tuple()[0] = { platform .python_version_tuple ()[0 ]} ; "
You can’t perform that action at this time.
0 commit comments