D12266: setup: drop statement of support for Python before 3.5.3
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Wed Mar 2 15:44:38 UTC 2022
durin42 created this revision.
durin42 added a reviewer: indygreg.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
ðð
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12266
AFFECTED FILES
setup.py
CHANGE DETAILS
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -13,15 +13,7 @@
# bug link: https://bugs.python.org/issue25270
supportedpy = ','.join(
[
- '>=2.7.4',
- '!=3.0.*',
- '!=3.1.*',
- '!=3.2.*',
- '!=3.3.*',
- '!=3.4.*',
- '!=3.5.0',
- '!=3.5.1',
- '!=3.5.2',
+ '>=3.5.3',
'!=3.6.0',
'!=3.6.1',
]
@@ -37,7 +29,6 @@
def sysstr(s):
return s.decode('latin-1')
-
else:
libdir_escape = 'string_escape'
To: durin42, indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list