diff options
author | Armin Rigo <arigo@tunes.org> | 2019-11-03 07:33:47 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2019-11-03 07:33:47 +0100 |
commit | 007f2dc070933a33a41ba4000704271fbba5d7fd (patch) | |
tree | a177f29b71b808e61bab79d53983ee942cdde80e /c | |
parent | cd7bed8eea6be8fdd20bb572b4a536765269d39e (diff) | |
download | cffi-007f2dc070933a33a41ba4000704271fbba5d7fd.tar.gz |
update version to 1.13.2
Diffstat (limited to 'c')
-rw-r--r-- | c/_cffi_backend.c | 2 | ||||
-rw-r--r-- | c/test_c.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c index c1b753e..7f070e9 100644 --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -2,7 +2,7 @@ #include <Python.h> #include "structmember.h" -#define CFFI_VERSION "1.13.1" +#define CFFI_VERSION "1.13.2" #ifdef MS_WIN32 #include <windows.h> diff --git a/c/test_c.py b/c/test_c.py index 9f9c08e..671b3b8 100644 --- a/c/test_c.py +++ b/c/test_c.py @@ -14,7 +14,7 @@ from _cffi_backend import _testfunc, _get_types, _get_common_types, __version__ # ____________________________________________________________ import sys -assert __version__ == "1.13.1", ("This test_c.py file is for testing a version" +assert __version__ == "1.13.2", ("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,): |