From a9c99f441c0a9d830e452876726790d1e868179c Mon Sep 17 00:00:00 2001 From: Pop Cosmin Date: Tue, 26 Oct 2021 16:36:59 +0300 Subject: [PATCH 1/2] update base url env variable --- src/firebolt_db/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firebolt_db/constants.py b/src/firebolt_db/constants.py index 7a6243d..877ff8f 100644 --- a/src/firebolt_db/constants.py +++ b/src/firebolt_db/constants.py @@ -5,7 +5,7 @@ if found_dotenv: load_dotenv(found_dotenv) - base_url = os.environ["BASE_URL"] + base_url = os.environ["FIREBOLT_BASE_URL"] else: base_url = "https://api.app.firebolt.io" From 2e4aa666fbd2e5a29827700d38433a74382750d0 Mon Sep 17 00:00:00 2001 From: Pop Cosmin Date: Tue, 26 Oct 2021 16:37:19 +0300 Subject: [PATCH 2/2] update base url env variable --- setup.cfg | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 45e4676..7446cd2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = firebolt-sqlalchemy -version = 0.0.8 +version = 0.0.9 author = Firebolt author_email = pypi@firebolt.io description = Sqlalchemy adapter for Firebolt diff --git a/setup.py b/setup.py index c4a9c28..88ff5ce 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ setuptools.setup( name="firebolt-sqlalchemy", - version="0.0.8", + version="0.0.9", author="Firebolt", author_email="pypi@firebolt.io", description="Sqlalchemy adapter for Firebolt", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/firebolt-db/firebolt-sqlalchemy", - download_url="https://github.com/firebolt-db/firebolt-sqlalchemy/archive/refs/tags/0.0.8.tar.gz", + download_url="https://github.com/firebolt-db/firebolt-sqlalchemy/archive/refs/tags/0.0.9.tar.gz", project_urls={ "Bug Tracker": "https://github.com/firebolt-db/firebolt-sqlalchemy", },