diff -r d9017df70135 -r baddab229b86 mercurial/bundlecaches.py --- a/mercurial/bundlecaches.py Mon Jan 24 11:49:06 2022 +0100 +++ b/mercurial/bundlecaches.py Mon Jan 17 19:26:36 2022 +0100 @@ -195,7 +195,7 @@ # repo supports and error if the bundle isn't compatible. if version == b'packed1' and b'requirements' in params: requirements = set(params[b'requirements'].split(b',')) - missingreqs = requirements - repo.supportedformats + missingreqs = requirements - requirementsmod.STREAM_FIXED_REQUIREMENTS if missingreqs: raise error.UnsupportedBundleSpecification( _(b'missing support for repository features: %s')