Skip to content

Commit

Permalink
fix(snowflake): pin oscrypto to solve ongoing issue with OpenSSL 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
davinov committed Oct 20, 2023
1 parent 4cc84ec commit fe57faf
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## Fixed

- Snowflake connector: pin oscrypto version to avoid `oscrypto.errors.LibraryNotFoundError: Error detecting the version of libcrypto` (see https://github.com/wbond/oscrypto/issues/75)

## [3.23.18] 2023-09-04

### Fixed
Expand Down
32 changes: 25 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ simplejson = {version = "^3.17.6", optional = true}
pyhdb = {version = ">=0.3.4,<1.0", optional = true}
zeep = {version = "^4.1.0", optional = true}
snowflake-connector-python = {version = "^2.7.12", optional = true}
# Pinned until https://github.com/wbond/oscrypto/issues/75 is released
oscrypto = {git = "https://github.com/wbond/oscrypto.git", rev = "1547f535001ba568b239b8797465536759c742a3", optional = true}
pyarrow = {version = "<9", optional = true}
toucan-client = {version = "^1.0.1", optional = true}
hubspot-api-client = {version = "^7.4.0", optional = true}
Expand Down Expand Up @@ -127,7 +129,7 @@ Redshift = ["redshift_connector", "lxml"]
ROK = ["requests", "PyJWT", "simplejson"]
sap_hana = ["pyhdb"]
soap = ["zeep", "lxml"]
snowflake = ["snowflake-connector-python", "PyJWT", "pyarrow"]
snowflake = ["snowflake-connector-python", "PyJWT", "pyarrow", "oscrypto"]
toucan_toco = ["toucan_client"]

# All
Expand Down

0 comments on commit fe57faf

Please sign in to comment.