pin prompt-toolkit to compatible version in jupyter dockerfile

closes #9683
This commit is contained in:
Matthias 2024-01-15 07:22:23 +01:00
parent eccc1498af
commit 78ca939ae6

View File

@ -1,8 +1,8 @@
FROM freqtradeorg/freqtrade:develop_plot FROM freqtradeorg/freqtrade:develop_plot
# Pin jupyter-client to avoid tornado version conflict # Pin prompt-toolkit to avoid questionary version conflict
RUN pip install jupyterlab jupyter-client==7.3.4 --user --no-cache-dir RUN pip install jupyterlab "prompt-toolkit<=3.0.36" jupyter-client --user --no-cache-dir
# Empty the ENTRYPOINT to allow all commands # Empty the ENTRYPOINT to allow all commands
ENTRYPOINT [] ENTRYPOINT []