Skip to content

Commit

Permalink
setup.py: More Unique build_base
Browse files Browse the repository at this point in the history
This likely can race in superbuilds of dependent projects.
  • Loading branch information
ax3l committed Aug 12, 2024
1 parent 2fc6d0f commit 5bede85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def initialize_options(self):
# clashes with directories many developers have in their source trees;
# this can create confusing results with "pip install .", which clones
# the whole source tree by default
self.build_base = "_tmppythonbuild"
self.build_base = os.path.join("_tmppythonbuild", "amrex")

def run(self):
# remove existing build directory
Expand Down

0 comments on commit 5bede85

Please sign in to comment.