diff --git a/src/if_python3.c b/src/if_python3.c index 188e9c3e6..d06f66210 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -81,6 +81,11 @@ # define CODEC_ERROR_HANDLER NULL #endif +// Suppress Python 3.11 depreciations to see useful warnings +#if defined(__clang__) && defined(__clang_major__) && __clang_major__ > 11 +#pragma clang diagnostic ignored "-Wdeprecated-declarations" +#endif + // Python 3 does not support CObjects, always use Capsules #define PY_USE_CAPSULE diff --git a/src/version.c b/src/version.c index ca7091464..f7817f2b7 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 832, /**/ 831, /**/