From b106cfb4acef17c6e142ee610d3446d1ff66cf65 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 28 Oct 2024 09:09:14 -0400 Subject: [PATCH 1/3] mention strun package name usage in docs --- docs/roman/pipeline_run.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/roman/pipeline_run.rst b/docs/roman/pipeline_run.rst index f57d04ee9..2697fdb74 100644 --- a/docs/roman/pipeline_run.rst +++ b/docs/roman/pipeline_run.rst @@ -48,6 +48,13 @@ The mosaic level pipeline also has an alias, ``roman_mos``, and can be run as $ strun roman_mos r0008308002010007027_asn.json +.. note:: + + When using an **alias** with strun (for example ``strun resample``) you may + need to provide the ``romancal`` package name if you have other packages installed + that also use the same **alias**. The package name is provided prior to the + **alias** separated by ``::`` (for example ``strun romancal::resample``). + Exit Status ``````````` From 070feab47e617f06e8f9c8934d43446e310023c3 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 28 Oct 2024 09:18:39 -0400 Subject: [PATCH 2/3] add changelog fragment --- changes/1476.docs.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/1476.docs.rst diff --git a/changes/1476.docs.rst b/changes/1476.docs.rst new file mode 100644 index 000000000..621c1a925 --- /dev/null +++ b/changes/1476.docs.rst @@ -0,0 +1 @@ +Mention possible need to provide package name to strun when using aliases. From 814815fbae2c146877238b6d1e92cb7444b05fc4 Mon Sep 17 00:00:00 2001 From: Brett Date: Wed, 4 Dec 2024 17:04:44 -0500 Subject: [PATCH 3/3] switch to stpipe main --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 71b9a4c71..16fd4d7ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,8 +28,8 @@ dependencies = [ "scipy >=1.11", # "stcal>=1.10.0,<1.11.0", "stcal @ git+https://github.com/spacetelescope/stcal.git@main", - "stpipe >=0.7.0,<0.8.0", - # "stpipe @ git+https://github.com/spacetelescope/stpipe.git@main", + # "stpipe >=0.7.0,<0.8.0", + "stpipe @ git+https://github.com/spacetelescope/stpipe.git@main", "tweakwcs >=0.8.8", "spherical-geometry >= 1.2.22", "stsci.imagestats >= 1.6.3",