Skip to content

Commit 1cb2b57

Browse files
committed
fix numexpr version to avoid pandas-dev/pandas#54449
1 parent 13842b7 commit 1cb2b57

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
3636
ADD RNODataViewer /usr/local/lib/python3.10/site-packages/RNODataViewer
3737
# Install rnog-runtable tool
3838
WORKDIR /usr/local/lib/python3.10/site-packages/RNODataViewer/rnog-runtable
39+
#avoid https://github.com/pandas-dev/pandas/issues/54449
40+
RUN pip install numexpr==2.8.4
3941
RUN pip install -r requirements.txt .
4042
#ADD rnog-runtable /usr/local/lib/python3.10/site-packages/rnog-runtable
4143

RNODataViewer/monitoring.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,8 @@ def update_debug_logger_output(n_updates, current_value):
267267
# logging.warning("--rno_data_dir set to: %s.\
268268
# Using this as data directory instead of environmental variable RNO_DATA_DIR", parsed_args.rno_data_dir)
269269
# os.environ["RNO_DATA_DIR"] = parsed_args.rno_data_dir
270+
pip_output = subprocess.check_output(['python3', '-m', 'pip', 'list']).decode()
271+
logger.debug(f"Installed python modules:\n{pip_output}")
270272

271273
if parsed_args.open_window:
272274
webbrowser.open_new("http://localhost:{}".format(port))

0 commit comments

Comments
 (0)