From dd5598dbba51b1f9286714fa9ece91977c1e69dc Mon Sep 17 00:00:00 2001 From: chausman <chausman@nrao.edu> Date: Thu, 21 Mar 2024 08:30:47 -0600 Subject: [PATCH] fix dev version formatting to match python standard --- .bumpversion.toml | 4 +-- .gitlab-ci.yml | 2 +- apps/cli/executables/go/spelunker/main.go | 2 +- .../carta_envoy/carta_envoy/__init__.py | 2 +- .../pexable/carta_envoy/pyproject.toml | 2 +- .../pexable/casa_envoy/casa_envoy/__init__.py | 2 +- .../pexable/casa_envoy/pyproject.toml | 2 +- .../pexable/conveyor/conveyor/__init__.py | 2 +- .../pexable/conveyor/pyproject.toml | 2 +- .../data_annotator/data_annotator/__init__.py | 2 +- .../pexable/data_annotator/pyproject.toml | 2 +- .../pexable/deliver/delivery/__init__.py | 2 +- .../pexable/deliver/pyproject.toml | 2 +- .../ingest_envoy/ingest_envoy/__init__.py | 2 +- .../pexable/ingest_envoy/pyproject.toml | 2 +- .../pexable/mediator/pyproject.toml | 2 +- .../mediator/system_mediator/__init__.py | 2 +- .../executables/pexable/null/null/__init__.py | 2 +- .../executables/pexable/null/pyproject.toml | 2 +- .../productfetcher/productfetcher/__init__.py | 2 +- .../pexable/productfetcher/pyproject.toml | 2 +- .../pexable/update_stage/pyproject.toml | 2 +- .../update_stage/update_stage/__init__.py | 2 +- .../executables/pexable/vela/pyproject.toml | 2 +- .../executables/pexable/vela/vela/__init__.py | 2 +- .../pexable/wf_inspector/pyproject.toml | 2 +- .../wf_inspector/wf_inspector/__init__.py | 2 +- .../pexable/ws_annihilator/pyproject.toml | 2 +- .../ws_annihilator/ws_annihilator/__init__.py | 2 +- .../pexable/ws_metrics/pyproject.toml | 2 +- .../pexable/ws_metrics/ws_metrics/__init__.py | 2 +- .../utilities/aat_wrest/aat_wrest/__init__.py | 2 +- apps/cli/utilities/aat_wrest/pyproject.toml | 2 +- .../contacts_wrest/contacts_wrest/__init__.py | 2 +- .../utilities/contacts_wrest/pyproject.toml | 2 +- .../core_sampler/core_sampler/__init__.py | 2 +- .../cli/utilities/core_sampler/pyproject.toml | 2 +- apps/cli/utilities/wf_monitor/poetry.lock | 4 +-- apps/cli/utilities/wf_monitor/pyproject.toml | 2 +- .../wf_monitor/wf_monitor/__init__.py | 2 +- services/capability/capability/__init__.py | 2 +- services/capability/poetry.lock | 6 ++--- services/capability/pyproject.toml | 2 +- .../notification/notification/__init__.py | 2 +- services/notification/poetry.lock | 2 +- services/notification/pyproject.toml | 2 +- services/workflow/gitlab-requirements.txt | 26 +++++++++---------- services/workflow/poetry.lock | 4 +-- services/workflow/pyproject.toml | 2 +- services/workflow/workflow/__init__.py | 2 +- shared/messaging/messaging/__init__.py | 2 +- shared/messaging/pyproject.toml | 2 +- shared/workspaces/pyproject.toml | 2 +- shared/workspaces/workspaces/__init__.py | 2 +- 54 files changed, 71 insertions(+), 71 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 03dcaaadf..7c0ea243e 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -2,7 +2,7 @@ # Docs: https://callowayproject.github.io/bump-my-version/ # NB: Run with `--ignore-missing-version` flag to ignore PyCAPO's version [tool.bumpversion] -current_version = "2.8.3dev1" +current_version = "2.8.3.dev1" parse = """(?x) (?P<major>0|[1-9]\\d*)\\. (?P<minor>0|[1-9]\\d*)\\. @@ -25,7 +25,7 @@ allow_dirty = true ignore_missing_version = true [tool.bumpversion.parts.pre_l] -values = ["dev", "rc", "final"] +values = [".dev", "rc", "final"] # Python Versioning: https://packaging.python.org/en/latest/specifications/version-specifiers/#version-specifiers optional_value = "final" [tool.bumpversion.parts.pre_n] diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c07fd690d..fa0b4fa62 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ variables: POSTGRES_DB: archive POSTGRES_USER: "archive" POSTGRES_PASSWORD: "docker" - RELEASE_VERSION: 2.8.3dev1 + RELEASE_VERSION: 2.8.3.dev1 image: docker:19.03.12 diff --git a/apps/cli/executables/go/spelunker/main.go b/apps/cli/executables/go/spelunker/main.go index 35b7940f5..003ca8a42 100644 --- a/apps/cli/executables/go/spelunker/main.go +++ b/apps/cli/executables/go/spelunker/main.go @@ -46,7 +46,7 @@ func main() { if *v { //TODO: fix version system for containers - log.Println("2.8.3dev1") + log.Println("2.8.3.dev1") os.Exit(0) } diff --git a/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py b/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py index c19038890..ba0cef427 100644 --- a/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py +++ b/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py @@ -18,4 +18,4 @@ """ Workspaces system for launching CARTA for viewing images """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/carta_envoy/pyproject.toml b/apps/cli/executables/pexable/carta_envoy/pyproject.toml index 05578c7b7..474a6992c 100644 --- a/apps/cli/executables/pexable/carta_envoy/pyproject.toml +++ b/apps/cli/executables/pexable/carta_envoy/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "carta_envoy" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces system for launching CARTA for viewing images" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py b/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py index c93b059c8..d814e78e5 100644 --- a/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py +++ b/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py @@ -18,4 +18,4 @@ """ Workspaces CASA functionality bridge """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/casa_envoy/pyproject.toml b/apps/cli/executables/pexable/casa_envoy/pyproject.toml index 9cad22903..6f5cbd09e 100644 --- a/apps/cli/executables/pexable/casa_envoy/pyproject.toml +++ b/apps/cli/executables/pexable/casa_envoy/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "casa_envoy" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces CASA functionality bridge" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/conveyor/conveyor/__init__.py b/apps/cli/executables/pexable/conveyor/conveyor/__init__.py index 8da3537ff..d5489caa9 100644 --- a/apps/cli/executables/pexable/conveyor/conveyor/__init__.py +++ b/apps/cli/executables/pexable/conveyor/conveyor/__init__.py @@ -18,4 +18,4 @@ """ Conveyor """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/conveyor/pyproject.toml b/apps/cli/executables/pexable/conveyor/pyproject.toml index 20dcf67da..cc5e820b2 100644 --- a/apps/cli/executables/pexable/conveyor/pyproject.toml +++ b/apps/cli/executables/pexable/conveyor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "conveyor" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Conveyor" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py b/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py index 7283c5073..a91a3e028 100644 --- a/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py +++ b/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py @@ -18,4 +18,4 @@ """ Workspaces metrics reporter for users outside of SSA. """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/data_annotator/pyproject.toml b/apps/cli/executables/pexable/data_annotator/pyproject.toml index 737ca9a3e..a4979e024 100644 --- a/apps/cli/executables/pexable/data_annotator/pyproject.toml +++ b/apps/cli/executables/pexable/data_annotator/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "data_annotator" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces CLI tool for creating and deleting comments associated with data quality." authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/deliver/delivery/__init__.py b/apps/cli/executables/pexable/deliver/delivery/__init__.py index ec6aca8bd..02caac98b 100644 --- a/apps/cli/executables/pexable/deliver/delivery/__init__.py +++ b/apps/cli/executables/pexable/deliver/delivery/__init__.py @@ -18,4 +18,4 @@ """ Workspaces data delivery module """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/deliver/pyproject.toml b/apps/cli/executables/pexable/deliver/pyproject.toml index ff671c781..7be92c68b 100644 --- a/apps/cli/executables/pexable/deliver/pyproject.toml +++ b/apps/cli/executables/pexable/deliver/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ssa_deliver" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces data delivery module" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py index c362b5cbf..0b27f12a4 100644 --- a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py +++ b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py @@ -18,4 +18,4 @@ """ Ingest envoy """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/ingest_envoy/pyproject.toml b/apps/cli/executables/pexable/ingest_envoy/pyproject.toml index e731292e9..7a1abd998 100644 --- a/apps/cli/executables/pexable/ingest_envoy/pyproject.toml +++ b/apps/cli/executables/pexable/ingest_envoy/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ingest_envoy" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Ingest envoy" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/mediator/pyproject.toml b/apps/cli/executables/pexable/mediator/pyproject.toml index a8cb3ae0e..e5909d175 100644 --- a/apps/cli/executables/pexable/mediator/pyproject.toml +++ b/apps/cli/executables/pexable/mediator/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ssa_mediator" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Mediator: the Workspaces intervention utility" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/mediator/system_mediator/__init__.py b/apps/cli/executables/pexable/mediator/system_mediator/__init__.py index 4ad3cfb52..1bd0f9ec1 100644 --- a/apps/cli/executables/pexable/mediator/system_mediator/__init__.py +++ b/apps/cli/executables/pexable/mediator/system_mediator/__init__.py @@ -18,4 +18,4 @@ """ Mediator: the Workspaces intervention utility """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/null/null/__init__.py b/apps/cli/executables/pexable/null/null/__init__.py index e950fed5e..91be90fa3 100644 --- a/apps/cli/executables/pexable/null/null/__init__.py +++ b/apps/cli/executables/pexable/null/null/__init__.py @@ -18,4 +18,4 @@ """ This is the null executable, a baseline test of the functionality of the Workspaces system. """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/null/pyproject.toml b/apps/cli/executables/pexable/null/pyproject.toml index b641076ec..d0c5293d4 100644 --- a/apps/cli/executables/pexable/null/pyproject.toml +++ b/apps/cli/executables/pexable/null/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ssa_null" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "This is the null executable, a baseline test of the functionality of the Workspaces system." authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py b/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py index ddf8d51c7..87413c5ee 100644 --- a/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py +++ b/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py @@ -18,4 +18,4 @@ """ Product fetcher: retrieve products from NGAS and other places for the archive and place them on disk """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/productfetcher/pyproject.toml b/apps/cli/executables/pexable/productfetcher/pyproject.toml index 4a31d409e..30b3f69d8 100644 --- a/apps/cli/executables/pexable/productfetcher/pyproject.toml +++ b/apps/cli/executables/pexable/productfetcher/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "productfetcher" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Product fetcher: retrieve products from NGAS and other places for the archive and place them on disk" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/update_stage/pyproject.toml b/apps/cli/executables/pexable/update_stage/pyproject.toml index 5df261141..5e4ea1d47 100644 --- a/apps/cli/executables/pexable/update_stage/pyproject.toml +++ b/apps/cli/executables/pexable/update_stage/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ssa_update_stage" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Update stage: pass status information back to workspaces over the HT Chirp protocol" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/update_stage/update_stage/__init__.py b/apps/cli/executables/pexable/update_stage/update_stage/__init__.py index 831987346..a90bd5d67 100644 --- a/apps/cli/executables/pexable/update_stage/update_stage/__init__.py +++ b/apps/cli/executables/pexable/update_stage/update_stage/__init__.py @@ -18,4 +18,4 @@ """ Update stage: pass status information back to workspaces over the HT Chirp protocol """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/vela/pyproject.toml b/apps/cli/executables/pexable/vela/pyproject.toml index 33dcbf895..2e7f3d193 100644 --- a/apps/cli/executables/pexable/vela/pyproject.toml +++ b/apps/cli/executables/pexable/vela/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ssa_vela" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces CASA functionality bridge" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/vela/vela/__init__.py b/apps/cli/executables/pexable/vela/vela/__init__.py index c93b059c8..d814e78e5 100644 --- a/apps/cli/executables/pexable/vela/vela/__init__.py +++ b/apps/cli/executables/pexable/vela/vela/__init__.py @@ -18,4 +18,4 @@ """ Workspaces CASA functionality bridge """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/wf_inspector/pyproject.toml b/apps/cli/executables/pexable/wf_inspector/pyproject.toml index 85bdaea3c..280804d5b 100644 --- a/apps/cli/executables/pexable/wf_inspector/pyproject.toml +++ b/apps/cli/executables/pexable/wf_inspector/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wf_inspector" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Command-line script that wraps the functionality of `docker exec -it` to enter our workflow Docker container" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py b/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py index 9f6d00bc9..9e3ea4f24 100644 --- a/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py +++ b/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py @@ -16,4 +16,4 @@ # You should have received a copy of the GNU General Public License # along with Workspaces. If not, see <https://www.gnu.org/licenses/>. """wf_inspector: access a running workflow via ssh""" -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/ws_annihilator/pyproject.toml b/apps/cli/executables/pexable/ws_annihilator/pyproject.toml index c8cc3f84c..5ccfa8403 100644 --- a/apps/cli/executables/pexable/ws_annihilator/pyproject.toml +++ b/apps/cli/executables/pexable/ws_annihilator/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ws_annihilator" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces Directory Annihilator; Clean up generated products from lustre!" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py b/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py index 2fef4a12c..3036b3069 100644 --- a/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py +++ b/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py @@ -18,4 +18,4 @@ """ Workspaces Directory Annihilator; Clean up generated products from lustre! """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/executables/pexable/ws_metrics/pyproject.toml b/apps/cli/executables/pexable/ws_metrics/pyproject.toml index b3c9717bb..444c3b37f 100644 --- a/apps/cli/executables/pexable/ws_metrics/pyproject.toml +++ b/apps/cli/executables/pexable/ws_metrics/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ws_metrics" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces metrics reporter for users outside of SSA." authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py b/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py index 7283c5073..a91a3e028 100644 --- a/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py +++ b/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py @@ -18,4 +18,4 @@ """ Workspaces metrics reporter for users outside of SSA. """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py b/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py index dc859c1d2..b1c22ce8f 100644 --- a/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py +++ b/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py @@ -18,4 +18,4 @@ """ AAT Wrest: Workspaces-to-Archive metadata retriever """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/utilities/aat_wrest/pyproject.toml b/apps/cli/utilities/aat_wrest/pyproject.toml index d6a006bc3..9b0c38983 100644 --- a/apps/cli/utilities/aat_wrest/pyproject.toml +++ b/apps/cli/utilities/aat_wrest/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "aat_wrest" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "AAT Wrest: Workspaces-to-Archive metadata retriever" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py b/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py index 19bc1d0cc..f06148bab 100644 --- a/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py +++ b/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py @@ -18,4 +18,4 @@ """ Contact information wrester """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/utilities/contacts_wrest/pyproject.toml b/apps/cli/utilities/contacts_wrest/pyproject.toml index aa3fdc269..e94bd6e95 100644 --- a/apps/cli/utilities/contacts_wrest/pyproject.toml +++ b/apps/cli/utilities/contacts_wrest/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "contacts_wrest" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Contact information wrester" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/utilities/core_sampler/core_sampler/__init__.py b/apps/cli/utilities/core_sampler/core_sampler/__init__.py index 6963ed168..10b1194c6 100644 --- a/apps/cli/utilities/core_sampler/core_sampler/__init__.py +++ b/apps/cli/utilities/core_sampler/core_sampler/__init__.py @@ -18,4 +18,4 @@ """ Workspaces database core sampler """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/apps/cli/utilities/core_sampler/pyproject.toml b/apps/cli/utilities/core_sampler/pyproject.toml index c257966a9..32f0611d1 100644 --- a/apps/cli/utilities/core_sampler/pyproject.toml +++ b/apps/cli/utilities/core_sampler/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "core_sampler" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workspaces database core sampler" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/utilities/wf_monitor/poetry.lock b/apps/cli/utilities/wf_monitor/poetry.lock index b1d9b6be9..c3a07c8b0 100644 --- a/apps/cli/utilities/wf_monitor/poetry.lock +++ b/apps/cli/utilities/wf_monitor/poetry.lock @@ -383,7 +383,7 @@ tests = ["pytest", "pytz", "simplejson"] [[package]] name = "messaging" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON." optional = false python-versions = "~3.10" @@ -706,7 +706,7 @@ files = [ [[package]] name = "workspaces" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Workspaces shared library" optional = false python-versions = "~3.10" diff --git a/apps/cli/utilities/wf_monitor/pyproject.toml b/apps/cli/utilities/wf_monitor/pyproject.toml index 587763ff1..f8946b72b 100644 --- a/apps/cli/utilities/wf_monitor/pyproject.toml +++ b/apps/cli/utilities/wf_monitor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wf_monitor" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workflow monitor that reads in HTCondor logs and translates them into AMQP events" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py b/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py index 21ceea860..1e054e627 100644 --- a/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py +++ b/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py @@ -18,4 +18,4 @@ """ Workflow monitor that reads in HTCondor logs and translates them into AMQP events """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/services/capability/capability/__init__.py b/services/capability/capability/__init__.py index 01258e216..812b4c714 100644 --- a/services/capability/capability/__init__.py +++ b/services/capability/capability/__init__.py @@ -18,4 +18,4 @@ """ Capability: the Workspaces Capability Service """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/services/capability/poetry.lock b/services/capability/poetry.lock index 8724d565f..2d8310377 100644 --- a/services/capability/poetry.lock +++ b/services/capability/poetry.lock @@ -2,7 +2,7 @@ [[package]] name = "aat-wrest" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "AAT Wrest: Workspaces-to-Archive metadata retriever" optional = false python-versions = "~3.10" @@ -630,7 +630,7 @@ tests = ["pytest", "pytz", "simplejson"] [[package]] name = "messaging" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON." optional = false python-versions = "~3.10" @@ -1341,7 +1341,7 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"] [[package]] name = "workspaces" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Workspaces shared library" optional = false python-versions = "~3.10" diff --git a/services/capability/pyproject.toml b/services/capability/pyproject.toml index 0c951fef3..220748933 100644 --- a/services/capability/pyproject.toml +++ b/services/capability/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "capability" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Capability: the Workspaces Capability Service" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/services/notification/notification/__init__.py b/services/notification/notification/__init__.py index e4418fb98..054196277 100644 --- a/services/notification/notification/__init__.py +++ b/services/notification/notification/__init__.py @@ -18,4 +18,4 @@ """ The Workspaces notification service """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/services/notification/poetry.lock b/services/notification/poetry.lock index 1fab51869..550f937db 100644 --- a/services/notification/poetry.lock +++ b/services/notification/poetry.lock @@ -1154,7 +1154,7 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"] [[package]] name = "workspaces" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Workspaces shared library" optional = false python-versions = "~3.10" diff --git a/services/notification/pyproject.toml b/services/notification/pyproject.toml index 0fc39d362..ff6ef0674 100644 --- a/services/notification/pyproject.toml +++ b/services/notification/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "notification" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "The SSA notification service" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/services/workflow/gitlab-requirements.txt b/services/workflow/gitlab-requirements.txt index e41dacb26..7496d67d7 100644 --- a/services/workflow/gitlab-requirements.txt +++ b/services/workflow/gitlab-requirements.txt @@ -1,14 +1,14 @@ # Pex requirements pulled from gitlab -carta-envoy==2.8.3dev1 -casa-envoy==2.8.3dev1 -conveyor==2.8.3dev1 -ssa-deliver==2.8.3dev1 -ingest-envoy==2.8.3dev1 -ssa-mediator==2.8.3dev1 -ssa-null==2.8.3dev1 -productfetcher==2.8.3dev1 -ssa-update-stage==2.8.3dev1 -ssa-vela==2.8.3dev1 -wf-inspector==2.8.3dev1 -ws-annihilator==2.8.3dev1 -ws-metrics==2.8.3dev1 +carta-envoy==2.8.3.dev1 +casa-envoy==2.8.3.dev1 +conveyor==2.8.3.dev1 +ssa-deliver==2.8.3.dev1 +ingest-envoy==2.8.3.dev1 +ssa-mediator==2.8.3.dev1 +ssa-null==2.8.3.dev1 +productfetcher==2.8.3.dev1 +ssa-update-stage==2.8.3.dev1 +ssa-vela==2.8.3.dev1 +wf-inspector==2.8.3.dev1 +ws-annihilator==2.8.3.dev1 +ws-metrics==2.8.3.dev1 diff --git a/services/workflow/poetry.lock b/services/workflow/poetry.lock index 7cb94293f..e4fde2bdc 100644 --- a/services/workflow/poetry.lock +++ b/services/workflow/poetry.lock @@ -503,7 +503,7 @@ tests = ["pytest", "pytz", "simplejson"] [[package]] name = "messaging" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON." optional = false python-versions = "~3.10" @@ -1104,7 +1104,7 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"] [[package]] name = "workspaces" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Workspaces shared library" optional = false python-versions = "~3.10" diff --git a/services/workflow/pyproject.toml b/services/workflow/pyproject.toml index bb9b8a612..b959a90f6 100644 --- a/services/workflow/pyproject.toml +++ b/services/workflow/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "workflow" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "Workflow: the Workspaces Workflow Service" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/services/workflow/workflow/__init__.py b/services/workflow/workflow/__init__.py index cc5c0b6bd..116a4a630 100644 --- a/services/workflow/workflow/__init__.py +++ b/services/workflow/workflow/__init__.py @@ -18,4 +18,4 @@ """ Workflow: the Workspaces Workflow Service """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/shared/messaging/messaging/__init__.py b/shared/messaging/messaging/__init__.py index 134d4f01f..6f4269a94 100644 --- a/shared/messaging/messaging/__init__.py +++ b/shared/messaging/messaging/__init__.py @@ -19,4 +19,4 @@ SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON. """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" diff --git a/shared/messaging/pyproject.toml b/shared/messaging/pyproject.toml index 8ecc6107d..1b0dffc0e 100644 --- a/shared/messaging/pyproject.toml +++ b/shared/messaging/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "messaging" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON." authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/shared/workspaces/pyproject.toml b/shared/workspaces/pyproject.toml index c3e65ac44..ae4868ef8 100644 --- a/shared/workspaces/pyproject.toml +++ b/shared/workspaces/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "workspaces" -version = "2.8.3dev1" +version = "2.8.3.dev1" description = "SSA Workspaces shared library" authors = ["DMS SSA <dms-ssa@nrao.edu>"] license = "GPL3+" diff --git a/shared/workspaces/workspaces/__init__.py b/shared/workspaces/workspaces/__init__.py index 324b24c32..4527b3350 100644 --- a/shared/workspaces/workspaces/__init__.py +++ b/shared/workspaces/workspaces/__init__.py @@ -18,4 +18,4 @@ """ SSA Workspaces shared library """ -__version__ = "2.8.3dev1" +__version__ = "2.8.3.dev1" -- GitLab