diff --git a/bin/slurm_calibrate.sh b/bin/slurm_calibrate.sh
index 01026e9afd89c560d6e435edf08efc4fcdc45610..2483c460d86290544e119145d121cbb1c37058ab 100755
--- a/bin/slurm_calibrate.sh
+++ b/bin/slurm_calibrate.sh
@@ -43,23 +43,13 @@ then
     sleep 15
 fi
 
-# Launch CalParrot to repeat calibration constant queries
-if [ "$caltype" == "CORRECT" ]
-then
-  port_file=$(mktemp)
-  ${python_path} -m calparrot --port-file $port_file
-  calparrot_port=$(cat $port_file)
-  rm $port_file
-  export CAL_CAL_TOOLS_CALCAT="{base-api-url='http://127.0.0.1:${calparrot_port}/api', use-oauth2=false}"
-fi
-
 echo "Running notebook"
-${python_path} -m princess ${nb_path} --save
-
-# Stop CalParrot
 if [ "$caltype" == "CORRECT" ]
 then
-  ${python_path} -m calparrot.stop $calparrot_port
+  # calparrot stores and repeats calcat queries
+  ${python_path} -m calparrot -- ${python_path} -m princess ${nb_path} --save
+else
+  ${python_path} -m princess ${nb_path} --save
 fi
 
 # stop the cluster if requested
diff --git a/setup.py b/setup.py
index cf2df3f2154dd7c8815cf0b299933d46f8e90826..56ad883bbaaac0706136f9ec5f90f2c0a09085c7 100644
--- a/setup.py
+++ b/setup.py
@@ -116,7 +116,7 @@ if "readthedocs.org" not in sys.executable:
     install_requires += [
         "iCalibrationDB @ git+ssh://git@git.xfel.eu:10022/detectors/cal_db_interactive.git@2.3.0",  # noqa
         "XFELDetectorAnalysis @ git+ssh://git@git.xfel.eu:10022/karaboDevices/pyDetLib.git@2.7.0",  # noqa
-        "CalParrot @ git+ssh://git@git.xfel.eu:10022/calibration/calparrot.git@fdcdd52fdf8bedc0db1de46aaeb389e48275fdcc",  # noqa
+        "CalParrot @ git+ssh://git@git.xfel.eu:10022/calibration/calparrot.git@b0cfc58ff0f231685630b2a12f566faf243b1035",  # noqa
     ]
 
 setup(