Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): revert oscrypto change that prevented the package to be published #1348

Merged
merged 2 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Changelog (Pypi package)

### [4.9.3] 2023-10-20
## [4.9.5] 2023-10-27

## Fixed
### Fixed

- Revert a change (from 4.9.3) that prevented the publication of the package on pypi

## [4.9.4] 2023-10-27

### 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)
- Update DataBricks connector

### [4.9.2] 2023-10-04

Expand Down
42 changes: 17 additions & 25 deletions poetry.lock

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

6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ multi_line_output = 3

[tool.poetry]
name = "toucan-connectors"
version = "4.9.4"
version = "4.9.5"
description = "Toucan Toco Connectors"
authors = ["Toucan Toco <[email protected]>"]
license = "BSD"
Expand Down Expand Up @@ -59,8 +59,6 @@ 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,<4.0.0", 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 = "<14", optional = true}
toucan-client = {version = "^1.0.1", optional = true}
peakina = {version = ">=0.11,<0.13", optional = true}
Expand Down Expand Up @@ -130,7 +128,7 @@ postgres = ["psycopg2"]
Redshift = ["redshift_connector", "lxml"]
sap_hana = ["pyhdb"]
soap = ["zeep", "lxml"]
snowflake = ["snowflake-connector-python", "PyJWT", "pyarrow", "oscrypto"]
snowflake = ["snowflake-connector-python", "PyJWT", "pyarrow"]
toucan_toco = ["toucan_client"]

# All
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=toucantoco

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=Toucan Connectors
sonar.projectVersion=4.9.4
sonar.projectVersion=4.9.5
sonar.python.version=3.11

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
Expand Down