# HG changeset patch # User Augie Fackler # Date 2018-04-03 17:37:57 # Node ID 611e466662af7ef616f12c62fcc942e2bb5c9474 # Parent feced1629f48286a899d407fb36a914c3362cf27 setup: add overlooked hgext.infinitepush package declaration Will fix infinitepush tests that have been failing when run without --local. Differential Revision: https://phab.mercurial-scm.org/D3038 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -816,7 +816,9 @@ packages = ['mercurial', 'mercurial.thirdparty.zope.interface', 'mercurial.utils', 'hgext', 'hgext.convert', 'hgext.fsmonitor', - 'hgext.fsmonitor.pywatchman', 'hgext.highlight', + 'hgext.fsmonitor.pywatchman', + 'hgext.infinitepush', + 'hgext.highlight', 'hgext.largefiles', 'hgext.lfs', 'hgext.narrow', 'hgext.zeroconf', 'hgext3rd', 'hgdemandimport']