--- a/contrib/python-zstandard/zstd.c Sun Sep 15 00:07:30 2019 -0400
+++ b/contrib/python-zstandard/zstd.c Sun Sep 15 20:04:00 2019 -0700
@@ -210,7 +210,7 @@
We detect this mismatch here and refuse to load the module if this
scenario is detected.
*/
- if (ZSTD_VERSION_NUMBER != 10308 || ZSTD_versionNumber() != 10308) {
+ if (ZSTD_VERSION_NUMBER != 10403 || ZSTD_versionNumber() != 10403) {
PyErr_SetString(PyExc_ImportError, "zstd C API mismatch; Python bindings not compiled against expected zstd version");
return;
}