setup: add packages for concurrent.futures
authorGregory Szorc <gregory.szorc@gmail.com>
Mon, 09 Apr 2018 12:27:52 -0700
changeset 37627 cfb32979abcd
parent 37626 0a9c0d3480b2
child 37628 8da30ceae88f
setup: add packages for concurrent.futures We conceivably don't need to distribute this package on Python 3 since we will use the version in the standard library. However, we want installs to be usable of multiple versions of Python. So it is best to always have it. Differential Revision: https://phab.mercurial-scm.org/D3265
setup.py
--- a/setup.py	Mon Apr 09 12:23:48 2018 -0700
+++ b/setup.py	Mon Apr 09 12:27:52 2018 -0700
@@ -812,6 +812,8 @@
             'mercurial.thirdparty.attr',
             'mercurial.thirdparty.cbor',
             'mercurial.thirdparty.cbor.cbor2',
+            'mercurial.thirdparty.concurrent',
+            'mercurial.thirdparty.concurrent.futures',
             'mercurial.thirdparty.zope',
             'mercurial.thirdparty.zope.interface',
             'mercurial.utils',