Skip to content

Commit

Permalink
Merge pull request #64 from getsolus/fix-build-errors
Browse files Browse the repository at this point in the history
Fix errors in our build system
  • Loading branch information
ermo authored Jun 14, 2024
2 parents e31daca + 4740460 commit c96c120
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eopkg_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def source_files():
files = []
for root, dirs, filenames in os.walk(PROJECT):
files.extend(path(root, f) for f in filenames if (f.endswith(".py") or f.endswith(".py3"))
files.extend(path(root, f) for f in filenames if (f.endswith(".py") or f.endswith(".py3")))
return files


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ uneopkg = "pisi.scripts.uneopkg:main"
# Builder-specific keys below. We use setuptools.

[build-system]
requires = ["setuptools>=58.0"]
requires = ["setuptools>=58.0", "iksemel>=1.6.1", "python-magic>=0.4.27"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
Expand Down

0 comments on commit c96c120

Please sign in to comment.