Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop debugpy from installer #2259

Merged
merged 1 commit into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
python -m pip install numpy scipy==1.7.3 docutils "pytest<6" sphinx unittest-xml-reporting
python -m pip install tinycc h5py sphinx pyparsing html5lib reportlab==3.6.6 pybind11 appdirs
python -m pip install six numba mako ipython qtconsole xhtml2pdf unittest-xml-reporting pylint
python -m pip install qt5reactor periodictable uncertainties debugpy dominate importlib_resources
python -m pip install qt5reactor periodictable uncertainties dominate importlib_resources
python -m pip install html2text


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
python -m pip install numpy scipy==1.7.3 docutils "pytest<6" sphinx unittest-xml-reporting
python -m pip install tinycc h5py sphinx pyparsing html5lib reportlab==3.6.6 pybind11 appdirs
python -m pip install six numba mako ipython qtconsole xhtml2pdf unittest-xml-reporting pylint
python -m pip install qt5reactor periodictable uncertainties debugpy dominate importlib_resources
python -m pip install qt5reactor periodictable uncertainties dominate importlib_resources
python -m pip install html2text


Expand Down
1 change: 0 additions & 1 deletion build_tools/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ pylint
qt5reactor
periodictable
uncertainties
debugpy
matplotlib~=3.5.2
PyQt5
lxml
Expand Down
5 changes: 0 additions & 5 deletions installers/sasview.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ datas = [
if platform.system() == 'Darwin':
datas.append((os.path.join(PYTHON_LOC,'lib','python3.8', 'site-packages','jedi'),'jedi'))
datas.append((os.path.join(PYTHON_LOC,'lib','python3.8', 'site-packages','zmq'),'.'))
datas.append((os.path.join(PYTHON_LOC,'lib','python3.8', 'site-packages','debugpy'),'debugpy'))
else:
datas.append((os.path.join(PYTHON_LOC,'Lib','site-packages','debugpy'),'debugpy'))

def add_data(data):
for component in data:
Expand Down Expand Up @@ -63,8 +60,6 @@ hiddenimports = [
'reportlab.graphics.barcode.fourstate',
'xmlrpc',
'xmlrpc.server',
'debugpy',
'debugpy._vendored',
'uncertainties',
]

Expand Down