# HG changeset patch # User Pierre-Yves David # Date 2022-01-17 21:48:16 # Node ID 3a8bc0b48e5182501dbeef2bfc8e4d2c950c8301 # Parent 66b59fbb0cddb2c42bf1afff390438eaf96899f7 requirements: sort _basesupported This will make the next changeset clearer. Differential Revision: https://phab.mercurial-scm.org/D12034 diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1288,13 +1288,13 @@ class localrepository(object): requirementsmod.DIRSTATE_V2_REQUIREMENT, } _basesupported = supportedformats | { - requirementsmod.STORE_REQUIREMENT, + requirementsmod.DOTENCODE_REQUIREMENT, requirementsmod.FNCACHE_REQUIREMENT, - requirementsmod.SHARED_REQUIREMENT, + requirementsmod.INTERNAL_PHASE_REQUIREMENT, requirementsmod.RELATIVE_SHARED_REQUIREMENT, - requirementsmod.DOTENCODE_REQUIREMENT, + requirementsmod.SHARED_REQUIREMENT, requirementsmod.SPARSE_REQUIREMENT, - requirementsmod.INTERNAL_PHASE_REQUIREMENT, + requirementsmod.STORE_REQUIREMENT, } # list of prefix for file which can be written without 'wlock'