Skip to content
Snippets Groups Projects
Commit a6ee916f2b2a authored by Georges Racinet's avatar Georges Racinet
Browse files

Support hg-evolve 11.1

We have reports of users with hg-evolve 11.1 clients having
problems pushing to Heptapod with 11.0 server side

Graft of 42bd0bab2046
parent 6b2cf790ff9c
No related branches found
Tags 4.2.3
2 merge requests!94Merged stable branch into default,!91Support hg-evolve 11.1 for Heptapod 0.40.x
Pipeline #75626 passed
......@@ -210,7 +210,9 @@
branch, topic_ns, topic = parsefqbn(branchmap_branch)
if not topic:
topic = None
if topic_ns != b'default':
# absence of topic namespace is encoded as 'default' in hg-evolve 11.0
# and 'none' in hg-evolve 11.1
if topic_ns not in (b'default', b'none'):
raise TopicNameSpaceUnsupported
return branch, topic
......
Mercurial>=6.1
hg-evolve~=11.0.1
hg-evolve>=11.0.1, <11.2
hg-git~=1.0.0
hg-loggingmod>=0.2.1
hg-configexpress~=0.4.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment