From 0245d9e790ba97e9b8ab01b545ecdaaf99bb6d8b Mon Sep 17 00:00:00 2001 From: Nathan Thorpe Date: Mon, 14 Aug 2023 16:21:23 -0700 Subject: [PATCH 1/2] disable auth cache by default --- cirro/api/auth/oauth_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cirro/api/auth/oauth_client.py b/cirro/api/auth/oauth_client.py index 7dc0c848..0a85d208 100644 --- a/cirro/api/auth/oauth_client.py +++ b/cirro/api/auth/oauth_client.py @@ -1,10 +1,10 @@ -from io import StringIO import json import logging import sys import threading import time from datetime import datetime, timedelta +from io import StringIO from pathlib import Path from typing import Optional @@ -92,7 +92,7 @@ def __init__( client_id: str, region: str, auth_endpoint: str, - enable_cache=True, + enable_cache=False, auth_io: Optional[StringIO] = None ): self.client_id = client_id From 0ae89e40e4f407ea1e3c2c634a90087deab9a29e Mon Sep 17 00:00:00 2001 From: Nathan Thorpe Date: Mon, 14 Aug 2023 16:21:53 -0700 Subject: [PATCH 2/2] bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e8ce24f3..6531348b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cirro" -version = "0.7.3" +version = "0.7.4" description = "CLI tool and SDK for interacting with the Cirro platform" authors = ["Cirro Bio "] license = "MIT"