Skip to content

Commit 324b78c

Browse files
Version requirement updated to 3.10.
Python 3.8 is going EOL in October 2024.
1 parent e812721 commit 324b78c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cloud-managed platform. Meraki generates the library based on dashboard API's Op
66
the latest API releases, and provides the full source code for the library including the tools used to generate the
77
library, if you are participating in the Early Access program or would like to contribute to the development of the
88
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
1010
via [PyPI](https://pypi.org/project/meraki/):
1111

1212
pip install --upgrade meraki

meraki/common.py

+4-4
Original file line numberDiff line numberDiff 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]}; "

0 commit comments

Comments
 (0)