From 3fffce44db9a432cc6bad2629d42c0761bc8cc10 Mon Sep 17 00:00:00 2001 From: Ryan Raasch <150935395+ryanraaschCDC@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:11:40 -0700 Subject: [PATCH] update config to meet EDAV name change request (#140) * updates for version 1.0.0 * remove some files * update readme * updated example config --- cfa_azure/helpers.py | 1 + pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cfa_azure/helpers.py b/cfa_azure/helpers.py index 6b2c2b1..2f12a4d 100644 --- a/cfa_azure/helpers.py +++ b/cfa_azure/helpers.py @@ -1803,6 +1803,7 @@ def check_config_req(config: str): "Authentication.tenant_id", "Authentication.batch_application_id", "Authentication.batch_object_id", + "Authentication.principal_id", "Authentication.sp_application_id", "Authentication.vault_url", "Authentication.vault_sp_secret_id", diff --git a/pyproject.toml b/pyproject.toml index 471ed99..92e4768 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cfa_azure" -version = "1.0.5" +version = "1.0.6" description = "module for use with Azure and Azure Batch" authors = ["Ryan Raasch "] readme = "README.md" diff --git a/setup.py b/setup.py index a82013c..be43698 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="cfa_azure", - version="1.0.5", + version="1.0.6", description="module for use with Azure and Azure Batch", packages=find_packages(exclude=["tests", "venv"]), author="Ryan Raasch",