Sfoglia il codice sorgente

Merge pull request #172 from legoktm/reproducible

setup.py: Make source files be in a deterministic order
tags/v0.4.4
Ben Kurtovic 7 anni fa
committed by GitHub
parent
commit
5f81d50dd4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      setup.py

+ 1
- 1
setup.py Vedi File

@@ -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(


Caricamento…
Annulla
Salva