diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-02-17 10:56:06 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2021-02-17 10:56:06 +0200 |
commit | 7029874c42f485f86ff1a353593ea526d963bef4 (patch) | |
tree | 7fad0b986ce3c44d189039d019abf66cc918dc60 /pypy | |
parent | skip test on 32-bit (diff) | |
download | pypy-7029874c42f485f86ff1a353593ea526d963bef4.tar.gz pypy-7029874c42f485f86ff1a353593ea526d963bef4.tar.bz2 pypy-7029874c42f485f86ff1a353593ea526d963bef4.zip |
update to cffi 1.14.5 (using pypy/tool/import_cffi.py and manually fixing too)
Diffstat (limited to 'pypy')
-rw-r--r-- | pypy/module/_cffi_backend/__init__.py | 2 | ||||
-rw-r--r-- | pypy/module/_cffi_backend/test/_backend_test_c.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pypy/module/_cffi_backend/__init__.py b/pypy/module/_cffi_backend/__init__.py index 43fc4a2ac4..0a028af448 100644 --- a/pypy/module/_cffi_backend/__init__.py +++ b/pypy/module/_cffi_backend/__init__.py @@ -1 +1 @@ -VERSION = "1.14.4" +VERSION = "1.14.5" diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py b/pypy/module/_cffi_backend/test/_backend_test_c.py index cd1e648917..ae93e126de 100644 --- a/pypy/module/_cffi_backend/test/_backend_test_c.py +++ b/pypy/module/_cffi_backend/test/_backend_test_c.py @@ -1,7 +1,7 @@ # ____________________________________________________________ import sys -assert __version__ == "1.14.4", ("This test_c.py file is for testing a version" +assert __version__ == "1.14.5", ("This test_c.py file is for testing a version" " of cffi that differs from the one that we" " get from 'import _cffi_backend'") if sys.version_info < (3,): |