[Updated] D12315: setup: drop support for Python 3.5
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Thu Mar 3 11:07:32 UTC 2022
Closed by commit rHG656196c1d442: setup: drop support for Python 3.5 (authored by indygreg).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D12315?vs=32441&id=32450
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D12315/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D12315
AFFECTED FILES
setup.py
CHANGE DETAILS
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -5,17 +5,11 @@
# 'python setup.py --help' for more options
import os
-# Mercurial will never work on Python 3 before 3.5 due to a lack
-# of % formatting on bytestrings, and can't work on 3.6.0 or 3.6.1
-# due to a bug in % formatting in bytestrings.
-# We cannot support Python 3.5.0, 3.5.1, 3.5.2 because of bug in
-# codecs.escape_encode() where it raises SystemError on empty bytestring
-# bug link: https://bugs.python.org/issue25270
+# Mercurial can't work on 3.6.0 or 3.6.1 due to a bug in % formatting
+# in bytestrings.
supportedpy = ','.join(
[
- '>=3.5.3',
- '!=3.6.0',
- '!=3.6.1',
+ '>=3.6.2',
]
)
To: indygreg, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220303/af53b3e9/attachment-0002.html>
More information about the Mercurial-patches
mailing list