Explorar el Código

Merge pull request #172 from legoktm/reproducible

setup.py: Make source files be in a deterministic order
tags/v0.4.4
Ben Kurtovic hace 7 años
committed by GitHub
padre
commit
5f81d50dd4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      setup.py

+ 1
- 1
setup.py Ver fichero

@@ -75,7 +75,7 @@ if fallback:
# Project-specific part begins here:

tokenizer = Extension("mwparserfromhell.parser._tokenizer",
sources=glob("mwparserfromhell/parser/ctokenizer/*.c"),
sources=sorted(glob("mwparserfromhell/parser/ctokenizer/*.c")),
depends=glob("mwparserfromhell/parser/ctokenizer/*.h"))

setup(


Cargando…
Cancelar
Guardar