|
8 | 8 | # and/or pip.
|
9 | 9 | import sys
|
10 | 10 |
|
11 |
| -py_min_version = (3, 7) # minimal supported python version |
12 |
| -since_mpl_version = (3, 4) # py_min_version is required since this mpl version |
| 11 | +py_min_version = (3, 8) # minimal supported python version |
| 12 | +since_mpl_version = (3, 6) # py_min_version is required since this mpl version |
13 | 13 |
|
14 | 14 | if sys.version_info < py_min_version:
|
15 | 15 | error = """
|
@@ -160,12 +160,6 @@ def prepare_flags(name, enable_lto):
|
160 | 160 | return env
|
161 | 161 |
|
162 | 162 | def build_extensions(self):
|
163 |
| - # Remove the -Wstrict-prototypes option, it's not valid for C++. Fixed |
164 |
| - # in Py3.7 as bpo-5755. |
165 |
| - try: |
166 |
| - self.compiler.compiler_so.remove('-Wstrict-prototypes') |
167 |
| - except (ValueError, AttributeError): |
168 |
| - pass |
169 | 163 | if (self.compiler.compiler_type == 'msvc' and
|
170 | 164 | os.environ.get('MPL_DISABLE_FH4')):
|
171 | 165 | # Disable FH4 Exception Handling implementation so that we don't
|
@@ -289,7 +283,6 @@ def make_release_tree(self, base_dir, files):
|
289 | 283 | 'License :: OSI Approved :: Python Software Foundation License',
|
290 | 284 | 'Programming Language :: Python',
|
291 | 285 | 'Programming Language :: Python :: 3',
|
292 |
| - 'Programming Language :: Python :: 3.7', |
293 | 286 | 'Programming Language :: Python :: 3.8',
|
294 | 287 | 'Programming Language :: Python :: 3.9',
|
295 | 288 | 'Programming Language :: Python :: 3.10',
|
|
0 commit comments