-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Tests fail after openssl: 3.0.9 -> 3.0.10 #75
Comments
👍 for this - I'm using
Looks like the regex on line 42 expects single-digit version components only. version_match = re.search('\\b(\\d\\.\\d\\.\\d[a-z]*)\\b', version_string) |
- Add setup.py and editable install - Update environment.yml to create the editable install - Sproc now returns a table - Set OpenSSL version to address this issue: wbond/oscrypto#75 - Consolidate test req's into requirements.txt - Update README for the corresponding changes above
So if someone wants a ready full patch (that passes for me), here it is: |
Is it worth accounting for e.g. v10.10.10 as well? I.e. adding + quantifiers to all the version components? |
Based on openssl version history, I don't think it's likely to make any difference in the next decade. |
@wbond it is possible throw new version of oscrypto with this patch ? we need this help to fix a kerberos auth. |
Thanks for pinging me - GitHub never seems to notify me of new issues even though I have that configured. |
EDIT: Fixed using snippet below, may be useful for others, ty Sorry for the dumb question @wbond: How do we actually use this fix? getting this error connecting to snowflake, latest version (1.3.0) installed on OS using snowflake-connector-python and snowflake-sqlalchemy, python:3.10-slim Saw that datadog was fixing this way so trying this:
|
If a bunch of people and companies are dependent on oscrypto, I’d encourage your companies to sponsor development through GitHub sponsors. Currently the asn1crypto project is sponsored through Tidelift, but oscrypto isn’t “big enough”, hence my request for GitHub sponsors. |
@wbond thanks for your work on this package! We have a dependency on This being said, curious what are the current bottlenecks for releasing the latest master branch on PyPI? Depending on what the pain points are, maybe we could help by adding an on-demand Github Actions release workflow |
Snowflake connector is not using |
Any chance of a release of this fix? We were looking into switching to |
Busted parsing when more digits appeared, most likely.
The text was updated successfully, but these errors were encountered: