Skip to content

Commit

Permalink
Try harder to force debugpy and friends into the installer
Browse files Browse the repository at this point in the history
  • Loading branch information
llimeht committed Nov 1, 2022
1 parent 876c0c0 commit 308deb7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions installers/sasview.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ datas = [
('../docs/sphinx-docs/build/html','doc')
]
#TODO: Hopefully we can get away from version specific packages
if platform.system() == 'Darwin':
datas.append((os.path.join(PYTHON_PACKAGES, 'jedi'), 'jedi'))
datas.append((os.path.join(PYTHON_PACKAGES, 'debugpy'), 'debugpy'))
datas.append((os.path.join(PYTHON_PACKAGES, 'zmq'), '.'))
datas.append((os.path.join(PYTHON_PACKAGES, 'jedi'), 'jedi'))
datas.append((os.path.join(PYTHON_PACKAGES, 'debugpy'), 'debugpy'))
datas.append((os.path.join(PYTHON_PACKAGES, 'zmq'), 'zmq'))

def add_data(data):
for component in data:
Expand Down

0 comments on commit 308deb7

Please sign in to comment.