Skip to content
Snippets Groups Projects
Commit c3db3bb4 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

setup: pass named argument to setup_zstd

The next release from upstream adds another named argument to this
function. Specify arguments by name so there is no ambiguity about
which argument is being passed.
parent 13d94304
No related branches found
No related tags found
No related merge requests found
......@@ -615,7 +615,7 @@
sys.path.insert(0, 'contrib/python-zstandard')
import setup_zstd
extmodules.append(setup_zstd.get_c_extension('mercurial.zstd'))
extmodules.append(setup_zstd.get_c_extension(name='mercurial.zstd'))
try:
from distutils import cygwinccompiler
......
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