From 0dbe02bdf32010902609448455c564f6255b914c Mon Sep 17 00:00:00 2001 From: ppizarror Date: Thu, 23 Feb 2023 09:43:34 -0300 Subject: [PATCH] Enable python 3.6 support --- .readthedocs.yml | 2 +- README.rst | 4 ++-- pygame_menu/version.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 37dd312c..2db149ab 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -15,7 +15,7 @@ sphinx: # Optionally set the version of Python and requirements required to build your docs python: - version: 3.7 + version: 3.8 install: - method: pip path: . diff --git a/README.rst b/README.rst index f96d12ae..19620a7c 100644 --- a/README.rst +++ b/README.rst @@ -14,9 +14,9 @@ pygame-menu :target: https://opensource.org/licenses/MIT :alt: License MIT -.. image:: https://img.shields.io/badge/python-3.7+-red.svg +.. image:: https://img.shields.io/badge/python-3.6+-red.svg :target: https://www.python.org/downloads - :alt: Python 3.7+ + :alt: Python 3.6+ .. image:: https://img.shields.io/badge/pygame-1.9.3%2B%2F2.0%2B-orange :target: https://www.pygame.org diff --git a/pygame_menu/version.py b/pygame_menu/version.py index d3e1ebe1..495991d2 100644 --- a/pygame_menu/version.py +++ b/pygame_menu/version.py @@ -34,6 +34,6 @@ def __str__(self) -> str: patch = property(lambda self: self[2]) -vernum = Version(4, 3, 7) +vernum = Version(4, 3, 8) ver = str(vernum) rev = ''