Skip to content

Commit e879817

Browse files
committed
makepanda: Remove support for Python 3.5
1 parent 7ae3908 commit e879817

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

makepanda/makepanda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
########################################################################
1010

1111
import sys
12-
if sys.version_info < (3, 5):
13-
print("This version of Python is not supported, use version 3.5 or higher.")
12+
if sys.version_info < (3, 6):
13+
print("This version of Python is not supported, use version 3.6 or higher.")
1414
exit(1)
1515

1616
try:

makepanda/makepandacore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3388,7 +3388,7 @@ def UpdatePythonVersionInfoFile(new_info):
33883388
version_info["soabi"] == new_info["soabi"] or \
33893389
not os.path.isfile(core_pyd) or \
33903390
version_info["version"].split(".", 1)[0] == "2" or \
3391-
version_info["version"] in ("3.0", "3.1", "3.2", "3.3", "3.4"):
3391+
version_info["version"] in ("3.0", "3.1", "3.2", "3.3", "3.4", "3.5"):
33923392
json_data.remove(version_info)
33933393

33943394
if not PkgSkip("PYTHON"):

makepanda/makewheel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,8 @@ def makewheel(version, output_dir, platform=None):
531531
if not LocateBinary("patchelf"):
532532
raise Exception("patchelf is required when building a Linux wheel.")
533533

534-
if sys.version_info < (3, 5):
535-
raise Exception("Python 3.5 is required to produce a wheel.")
534+
if sys.version_info < (3, 6):
535+
raise Exception("Python 3.6 is required to produce a wheel.")
536536

537537
if platform is None:
538538
# Determine the platform from the build.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy