From 7d5956893ef7c8a268e931aac006844164b7bd84 Mon Sep 17 00:00:00 2001 From: Denitsa Hristova Date: Tue, 11 Feb 2025 14:00:31 +0200 Subject: [PATCH 1/2] update comments to indicate visual_style param as deprecated --- duo_client/admin.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/duo_client/admin.py b/duo_client/admin.py index 95c1d40..f555a71 100644 --- a/duo_client/admin.py +++ b/duo_client/admin.py @@ -139,10 +139,9 @@ 'notes': , 'secret_key': , 'type': , - 'visual_style': } + 'visual_style': Deprecated; ignored if specified.} -See the adminapi docs for possible values for enroll_policy, visual_style, ip_whitelist, -and type. +See the adminapi docs for possible values for enroll_policy, ip_whitelist, and type. ADMINISTRATIVE UNITS @@ -2599,8 +2598,7 @@ def create_integration(self, name - The name of the integration (required) integration_type - (required) See adminapi docs for possible values. - visual_style - (optional, default 'default') - See adminapi docs for possible values. + visual_style - Deprecated; ignored if specified. greeting - (optional, default '') notes - (optional, uses default setting) enroll_policy - (optional, default 'enroll') @@ -2799,8 +2797,7 @@ def update_integration(self, integration_key - The key of the integration to update. (required) name - The name of the integration (optional) - visual_style - (optional, default 'default') - See adminapi docs for possible values. + visual_style - Deprecated; ignored if specified. greeting - Voice greeting (optional, default '') notes - internal use (optional, uses default setting) enroll_policy - <'enroll'|'allow'|'deny'> (optional, default 'enroll') From 6eec3440e6c9f6248656e0b1836f5ffe57e3cccf Mon Sep 17 00:00:00 2001 From: Denitsa Hristova Date: Tue, 11 Feb 2025 16:58:55 +0200 Subject: [PATCH 2/2] update Python versions in CI (#284) --- .github/workflows/python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 8201eb3..40c1843 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - name: Checkout