File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ pygame-menu
14
14
:target: https://opensource.org/licenses/MIT
15
15
:alt: License MIT
16
16
17
- .. image :: https://img.shields.io/badge/python-3.6 +-red.svg
17
+ .. image :: https://img.shields.io/badge/python-3.8 +-red.svg
18
18
:target: https://www.python.org/downloads
19
- :alt: Python 3.6 +
19
+ :alt: Python 3.8 +
20
20
21
21
.. image :: https://img.shields.io/badge/pygame-1.9.3%2B%2F2.0%2B-orange
22
22
:target: https://www.pygame.org
Original file line number Diff line number Diff line change @@ -247,9 +247,9 @@ def __init__(
247
247
assert not hasattr (pygame , 'get_init' ) or pygame .get_init (), \
248
248
'pygame is not initialized'
249
249
250
- # Assert python version is greater than 3.6
251
- assert sys .version_info >= (3 , 6 , 0 ), \
252
- 'pygame-menu only supports python equal or greater than version 3.6 .0'
250
+ # Assert python version is greater than 3.8
251
+ assert sys .version_info >= (3 , 8 , 0 ), \
252
+ 'pygame-menu only supports python equal or greater than version 3.8 .0'
253
253
254
254
# Column/row asserts
255
255
assert columns >= 1 , \
Original file line number Diff line number Diff line change 63
63
'License :: OSI Approved :: MIT License' ,
64
64
'Natural Language :: English' ,
65
65
'Operating System :: OS Independent' ,
66
- 'Programming Language :: Python :: 3.6' ,
67
- 'Programming Language :: Python :: 3.7' ,
68
66
'Programming Language :: Python :: 3.8' ,
69
67
'Programming Language :: Python :: 3.9' ,
70
68
'Programming Language :: Python :: 3.10' ,
78
76
],
79
77
include_package_data = True ,
80
78
packages = find_packages (exclude = ['test' ]),
81
- python_requires = '>=3.6 , <4' ,
79
+ python_requires = '>=3.8 , <4' ,
82
80
install_requires = requirements ,
83
81
extras_require = {
84
82
'docs' : ['sphinx<7' , 'sphinx-autodoc-typehints>=1.2.0' , 'sphinx-rtd-theme' ],
You can’t perform that action at this time.
0 commit comments