From 1cc853651adc0759279b780991665108e4ee1174 Mon Sep 17 00:00:00 2001 From: Mohammad Torkashvand <mohammad.torkashvand@geant.org> Date: Thu, 10 Oct 2024 10:21:22 +0200 Subject: [PATCH] bump to version 2.7.6 --- ...28101_add_orchestrator_2_7_6_migrations.py | 21 +++++++++++++++++++ requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 gso/migrations/versions/2024-10-10_51c819b28101_add_orchestrator_2_7_6_migrations.py diff --git a/gso/migrations/versions/2024-10-10_51c819b28101_add_orchestrator_2_7_6_migrations.py b/gso/migrations/versions/2024-10-10_51c819b28101_add_orchestrator_2_7_6_migrations.py new file mode 100644 index 00000000..3022420c --- /dev/null +++ b/gso/migrations/versions/2024-10-10_51c819b28101_add_orchestrator_2_7_6_migrations.py @@ -0,0 +1,21 @@ +"""Add upstream migrations as a dependency. + +Revision ID: 51c819b28101 +Revises: 844aa61c09ce +Create Date: 2024-10-10 10:00:08.539591 + +""" +# revision identifiers, used by Alembic. +revision = '51c819b28101' +down_revision = '87a05eddee3e' +branch_labels = None +depends_on = '460ec6748e37' +# in this revision, SURF has added uuid search workaround, so we need to add a dependency on the revision. + + +def upgrade() -> None: + pass + + +def downgrade() -> None: + pass diff --git a/requirements.txt b/requirements.txt index 433a9e17..621780cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -orchestrator-core==2.7.5 +orchestrator-core==2.7.6 requests==2.31.0 infoblox-client~=0.6.0 pycountry==23.12.11 diff --git a/setup.py b/setup.py index 70b7cd55..8d61f5bf 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( url="https://gitlab.software.geant.org/goat/gap/geant-service-orchestrator", packages=find_packages(), install_requires=[ - "orchestrator-core==2.7.5", + "orchestrator-core==2.7.6", "requests==2.31.0", "infoblox-client~=0.6.0", "pycountry==23.12.11", -- GitLab