Skip to content

Commit

Permalink
update custom build
Browse files Browse the repository at this point in the history
  • Loading branch information
roeger committed Dec 17, 2024
1 parent 9ba92e2 commit 952f607
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions up_fast_downward/_custom_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ def run(self, *args, **kwargs):
class bdist_wheel(_bdist_wheel):

def finalize_options(self):
_bdist_wheel.finalize_options(self)
super().finalize_options()
# Mark us as not a pure python package
self.root_is_pure = False

def get_tag(self):
python, abi, plat = _bdist_wheel.get_tag(self)
python, abi, plat = super().get_tag()
# We don't link with python ABI, but require python3
python, abi = 'py3', 'none'
return python, abi, plat

0 comments on commit 952f607

Please sign in to comment.