From ff38fbf368e33a17f6c622a78ee541d7d3d217bb Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 12 Apr 2024 09:07:27 -0700 Subject: [PATCH] Fix: Mark google secrets library as a main dependency (#189) --- poetry.lock | 24 ++++++++++++------------ pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/poetry.lock b/poetry.lock index 885a063a..6e7b9b0e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1037,13 +1037,13 @@ protobuf = ">=4.21.6" [[package]] name = "idna" -version = "3.6" +version = "3.7" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.5" files = [ - {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, - {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, + {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, + {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, ] [[package]] @@ -2478,22 +2478,22 @@ secure-local-storage = ["keyring (!=16.1.0,<25.0.0)"] [[package]] name = "snowflake-sqlalchemy" -version = "1.5.1" +version = "1.5.2" description = "Snowflake SQLAlchemy Dialect" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "snowflake-sqlalchemy-1.5.1.tar.gz", hash = "sha256:4f1383402ffc89311974bd810dee22003aef4af0f312a0fdb55778333ad1abf7"}, - {file = "snowflake_sqlalchemy-1.5.1-py2.py3-none-any.whl", hash = "sha256:df022fb73bc04d68dfb3216ebf7a1bfbd14d22def9c38bbe05275beb258adcd0"}, + {file = "snowflake_sqlalchemy-1.5.2-py3-none-any.whl", hash = "sha256:36fa417a2c5dc3cc774a3fd1f65c9f815ba99f21123ef6c5c8380e9d1213469c"}, + {file = "snowflake_sqlalchemy-1.5.2.tar.gz", hash = "sha256:bcf18b84f5a5c3be71703a25563f32d802f9c7be687f9c89fbd8e749f8392705"}, ] [package.dependencies] -snowflake-connector-python = "<4.0.0" -sqlalchemy = ">=1.4.0,<2.0.0" +snowflake-connector-python = "*" +sqlalchemy = "*" [package.extras] -development = ["mock", "numpy", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytz"] -pandas = ["snowflake-connector-python[pandas] (<4.0.0)"] +development = ["mock", "numpy", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytz"] +pandas = ["snowflake-connector-python[pandas]"] [[package]] name = "sortedcontainers" @@ -2866,4 +2866,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = ">=3.9,<4.0" -content-hash = "d1130167f74444477bee041a41686b12bd1d13d263cdf7e2b635d6ce9432d2ae" +content-hash = "9cc40ccd342ba08de211d0622a15b881bee945165aa986a907502754890bf8a5" diff --git a/pyproject.toml b/pyproject.toml index 332a6db9..b189cb09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ duckdb = "0.9.2" # TODO: Change to "^0.10.0" once support duckdb-engine = "0.9.2" # TODO: Change to "^0.10.0" once supported by MotherDuck google-auth = ">=2.27.0,<3.0" google-cloud-bigquery = ">=3.12.0,<4.0" +google-cloud-secret-manager = "^2.17.0" jsonschema = ">=3.2.0,<5.0" orjson = "3.9.15" overrides = "^7.4.0" @@ -54,7 +55,6 @@ pytest-docker = "^2.0.1" pytest-mypy = "^0.10.3" ruff = "^0.1.11" types-jsonschema = "^4.20.0.0" -google-cloud-secret-manager = "^2.17.0" types-requests = "2.31.0.4" freezegun = "^1.4.0" airbyte-source-faker = "^6.0.0"