mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
* Blacklist pytest 3.2.0 because it breaks us (#3835) See upstream: https://github.com/pytest-dev/pytest/issues/2644 * fix for latest flake8 (#3829)
This commit is contained in:
parent
38a2d0b948
commit
789b71dfbf
2 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -57,7 +57,7 @@ else:
|
|||
setup_requirements.append("cffi>=1.7")
|
||||
|
||||
test_requirements = [
|
||||
"pytest>=2.9.0",
|
||||
"pytest>=2.9.0,!=3.2.0",
|
||||
"pretend",
|
||||
"iso8601",
|
||||
"pytz",
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ def _encode_name(backend, name):
|
|||
name_entry, backend._lib.X509_NAME_ENTRY_free
|
||||
)
|
||||
res = backend._lib.X509_NAME_add_entry(
|
||||
subject, name_entry, -1, set_flag)
|
||||
subject, name_entry, -1, set_flag)
|
||||
backend.openssl_assert(res == 1)
|
||||
set_flag = -1
|
||||
return subject
|
||||
|
|
|
|||
Loading…
Reference in a new issue