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

[Backport][7.48] Pin oscrypto to a git reference to get bugfix #19929

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
8 changes: 7 additions & 1 deletion omnibus/config/software/snowflake-connector-python-py3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@
pip = "#{install_dir}/embedded/bin/pip3"
end

command "#{pip} install ."
# We need a newer version of oscrypto than the one released to get a fix for a bug
# that gets triggered when having double digits on the OpenSSL version
# (https://github.com/wbond/oscrypto/issues/75).
# We can remove the oscrypto pinning once the fix becomes part of a new release
oscrypto_commit = "d5f3437ed24257895ae1edd9e503cfb352e635a8"

command "#{pip} install . \"oscrypto @ git+https://github.com/wbond/oscrypto.git@#{oscrypto_commit}\"", :env => build_env
alopezz marked this conversation as resolved.
Show resolved Hide resolved
end