7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 08:30:48 +00:00

feat: upgrade ipdb/ipython in openedx-dev image

This commit is contained in:
Régis Behmo 2022-12-13 08:32:10 +01:00 committed by Régis Behmo
parent 9d9e9281d5
commit c70a6a5e80
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1 @@
- [Improvement] Upgrade ipdb and ipython packages in the openedx development image. (by @regisb)

View File

@ -223,7 +223,9 @@ USER app
# Install dev python requirements
RUN pip install -r requirements/edx/development.txt
RUN pip install ipdb==0.13.4 ipython==7.27.0
# https://pypi.org/project/ipdb/
# https://pypi.org/project/ipython
RUN pip install ipdb==0.13.9 ipython==8.7.0
# Add ipdb as default PYTHONBREAKPOINT
ENV PYTHONBREAKPOINT=ipdb.set_trace