Skip to content

Commit

Permalink
Turns out I need the pypa/pip#7953 fix for editable installs
Browse files Browse the repository at this point in the history
  • Loading branch information
neilflood committed May 28, 2024
1 parent 4519f69 commit 634d43b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
from setuptools import setup
import glob
import sys
import site


site.ENABLE_USER_SITE = ("--user" in sys.argv[1:])

# When run via pyproject.toml, we seem unable to import our own package.
# To get around this, we need to add to the path. I have no idea why,
Expand Down

0 comments on commit 634d43b

Please sign in to comment.