From 102f2ab4b401b5c6dad814b36302738e7ccb029e Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Wed, 29 Jun 2022 10:52:35 +0100 Subject: [PATCH] Record devpi index URL in requirements.txt files for reproducibility --- src/xfel_calibrate/calibrate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xfel_calibrate/calibrate.py b/src/xfel_calibrate/calibrate.py index 5d2b63c6f..00e131806 100755 --- a/src/xfel_calibrate/calibrate.py +++ b/src/xfel_calibrate/calibrate.py @@ -715,6 +715,8 @@ def run(argv=None): # Record installed Python packages for reproducing the environment if not args['skip_env_freeze']: with (cal_work_dir / 'requirements.txt').open('wb') as f: + print('--index-url https://devpi.exfldadev01.desy.de/euxfel/internal', + file=f, flush=True) check_call([python_exe, '-m', 'pip', 'freeze'], stdout=f) folder = get_par_attr(parms, 'in_folder', 'value', '') -- GitLab