Skip to content

Commit

Permalink
Merge pull request #2206 from bmwiedemann/sort
Browse files Browse the repository at this point in the history
Sort .so input file list
  • Loading branch information
Nathan Goldbaum authored Mar 14, 2019
2 parents 1019292 + 7dbbaab commit 48238c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@
"yt/analysis_modules/halo_finding/fof/kd.c"],
libraries=std_libs),
Extension("yt.analysis_modules.halo_finding.hop.EnzoHop",
glob.glob("yt/analysis_modules/halo_finding/hop/*.c")),
sorted(glob.glob("yt/analysis_modules/halo_finding/hop/*.c"))),
Extension("yt.frontends.artio._artio_caller",
["yt/frontends/artio/_artio_caller.pyx"] +
glob.glob("yt/frontends/artio/artio_headers/*.c"),
sorted(glob.glob("yt/frontends/artio/artio_headers/*.c")),
include_dirs=["yt/frontends/artio/artio_headers/",
"yt/geometry/",
"yt/utilities/lib/"],
Expand Down

0 comments on commit 48238c5

Please sign in to comment.