-
Notifications
You must be signed in to change notification settings - Fork 421
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
remove X509StoreFlags.NOTIFY_POLICY #1213
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alex
approved these changes
Apr 21, 2023
alex
added a commit
to pyca/cryptography
that referenced
this pull request
Jul 1, 2023
Recently removed from pyOpenSSL pyca/pyopenssl#1213 closes #8769
reaperhulk
pushed a commit
to pyca/cryptography
that referenced
this pull request
Jul 3, 2023
Recently removed from pyOpenSSL pyca/pyopenssl#1213 closes #8769
EchterAgo
added a commit
to EchterAgo/Electron-Cash
that referenced
this pull request
Mar 20, 2024
`cryptography` removed `X509_V_FLAG_NOTIFY_POLICY` which is still imported when using the `pysatochip` package but unused. To fix this we update `pyOpenSSL` to version 24.1.0 pyca/cryptography#9163 pyca/pyopenssl#1213 ``` File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/pysatochip/certificate_validator.py", line 6, in <module> import OpenSSL File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/__init__.py", line 8, in <module> from OpenSSL import crypto, SSL File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1556, in <module> class X509StoreFlags(object): File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1575, in X509StoreFlags NOTIFY_POLICY = _lib.X509_V_FLAG_NOTIFY_POLICY ```
EchterAgo
added a commit
to EchterAgo/Electron-Cash
that referenced
this pull request
Mar 20, 2024
`cryptography` removed `X509_V_FLAG_NOTIFY_POLICY` which is still imported when using the `pysatochip` package but unused. To fix this we update `pyOpenSSL` to version 24.1.0 pyca/cryptography#9163 pyca/pyopenssl#1213 ``` File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/pysatochip/certificate_validator.py", line 6, in <module> import OpenSSL File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/__init__.py", line 8, in <module> from OpenSSL import crypto, SSL File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1556, in <module> class X509StoreFlags(object): File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1575, in X509StoreFlags NOTIFY_POLICY = _lib.X509_V_FLAG_NOTIFY_POLICY ```
Fabcien
pushed a commit
to Bitcoin-ABC/bitcoin-abc
that referenced
this pull request
Apr 3, 2024
Summary: > Clean up the pip-audit result by bumping some deps. > Ignore some that aren't applicable to the run-time> . > build: Update PyOpenSSL to version 24.1.0 > > `cryptography` removed `X509_V_FLAG_NOTIFY_POLICY` which is still > imported when using the `pysatochip` package but unused. > > To fix this we update `pyOpenSSL` to version 24.1.0 > > pyca/cryptography#9163 > pyca/pyopenssl#1213 > > ``` > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/pysatochip/certificate_validator.py", line 6, in <module> > import OpenSSL > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/__init__.py", line 8, in <module> > from OpenSSL import crypto, SSL > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1556, in <module> > class X509StoreFlags(object): > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1575, in X509StoreFlags > NOTIFY_POLICY = _lib.X509_V_FLAG_NOTIFY_POLICY > ``` This is a backport of [[Electron-Cash/Electron-Cash#2796 | electroncash#2796]] and [[Electron-Cash/Electron-Cash#2815 | electroncash#2815]] Also deduplicate some determinstic requirements in requirements-hw.txt Depends on D15868 Test Plan: Build all release binaries, check that the executables work Reviewers: #bitcoin_abc, Fabien Reviewed By: #bitcoin_abc, Fabien Differential Revision: https://reviews.bitcoinabc.org/D15870
Fabcien
pushed a commit
to Bitcoin-ABC/ElectrumABC
that referenced
this pull request
Apr 4, 2024
Summary: > Clean up the pip-audit result by bumping some deps. > Ignore some that aren't applicable to the run-time> . > build: Update PyOpenSSL to version 24.1.0 > > `cryptography` removed `X509_V_FLAG_NOTIFY_POLICY` which is still > imported when using the `pysatochip` package but unused. > > To fix this we update `pyOpenSSL` to version 24.1.0 > > pyca/cryptography#9163 > pyca/pyopenssl#1213 > > ``` > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/pysatochip/certificate_validator.py", line 6, in <module> > import OpenSSL > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/__init__.py", line 8, in <module> > from OpenSSL import crypto, SSL > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1556, in <module> > class X509StoreFlags(object): > File "/tmp/.mount_Electrig7PIy/usr/lib/python3.11/site-packages/OpenSSL/crypto.py", line 1575, in X509StoreFlags > NOTIFY_POLICY = _lib.X509_V_FLAG_NOTIFY_POLICY > ``` This is a backport of [[Electron-Cash#2796 | electroncash#2796]] and [[Electron-Cash#2815 | electroncash#2815]] Also deduplicate some determinstic requirements in requirements-hw.txt Depends on D15868 Test Plan: Build all release binaries, check that the executables work Reviewers: #bitcoin_abc, Fabien Reviewed By: #bitcoin_abc, Fabien Differential Revision: https://reviews.bitcoinabc.org/D15870
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fixes #1212