##// END OF EJS Templates
setup: exclude vendored futures package on Python 3...
Yuya Nishihara -
r39649:96bffce4 default
parent child Browse files
Show More
@@ -818,8 +818,6 packages = ['mercurial',
818 818 'mercurial.thirdparty.attr',
819 819 'mercurial.thirdparty.cbor',
820 820 'mercurial.thirdparty.cbor.cbor2',
821 'mercurial.thirdparty.concurrent',
822 'mercurial.thirdparty.concurrent.futures',
823 821 'mercurial.thirdparty.zope',
824 822 'mercurial.thirdparty.zope.interface',
825 823 'mercurial.utils',
@@ -832,6 +830,9 packages = ['mercurial',
832 830 'hgext.largefiles', 'hgext.lfs', 'hgext.narrow',
833 831 'hgext.zeroconf', 'hgext3rd',
834 832 'hgdemandimport']
833 if sys.version_info[0] == 2:
834 packages.extend(['mercurial.thirdparty.concurrent',
835 'mercurial.thirdparty.concurrent.futures'])
835 836
836 837 common_depends = ['mercurial/bitmanipulation.h',
837 838 'mercurial/compat.h',
General Comments 0
You need to be logged in to leave comments. Login now