Skip to content

Commit

Permalink
Merge pull request #2 from LCOGT/fix/install
Browse files Browse the repository at this point in the history
fix extension sources
  • Loading branch information
jashan-lco authored Oct 31, 2024
2 parents 8a9503d + d75d6f1 commit ca607dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def build(setup_kwargs):
ext = Extension(
name = "pyslalib.slalib",
include_dirs = ["."],
sources = list(set(["slalib.pyf"]) & set(glob.glob("*.f")) & set(glob.glob("*.F")) - set(glob.glob("*-f2pywrappers.f")))
sources = ["slalib.pyf"] + list(set(glob.glob("*.f")) - set(glob.glob("*-f2pywrappers.f"))) + glob.glob("*.F")
)

setup_kwargs.update({
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyslalib"
version = "1.0.8"
version = "1.0.9"
description = "f2py and numpy based wrappers for SLALIB"
authors = [
"Jashandeep Sohi <[email protected]>",
Expand Down

0 comments on commit ca607dd

Please sign in to comment.