# HG changeset patch # User Gregory Szorc # Date 2018-03-26 21:17:01 # Node ID a1d2d0420e22f68a7802961291f1f4b2db62c5e8 # Parent aaabd709df720e456d7f93a1c790a0dbed051b38 setup: install cbor packages Without this, standalone installs don't have the cbor files. Differential Revision: https://phab.mercurial-scm.org/D2949 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -810,6 +810,8 @@ packages = ['mercurial', 'mercurial.pure', 'mercurial.thirdparty', 'mercurial.thirdparty.attr', + 'mercurial.thirdparty.cbor', + 'mercurial.thirdparty.cbor.cbor2', 'mercurial.utils', 'hgext', 'hgext.convert', 'hgext.fsmonitor', 'hgext.fsmonitor.pywatchman', 'hgext.highlight',