Skip to content

Commit

Permalink
Fix build on Python 3.8
Browse files Browse the repository at this point in the history
See issue 3707.
  • Loading branch information
Zac-HD committed Aug 5, 2023
1 parent 41dd521 commit 54fab2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypothesis-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


def local_file(name):
return Path(__file__).parent.joinpath(name).relative_to(Path.cwd())
return Path(__file__).absolute().parent.joinpath(name).relative_to(Path.cwd())


SOURCE = str(local_file("src"))
Expand Down

0 comments on commit 54fab2c

Please sign in to comment.