GH-132983: Remove zstd version check in the header file (#133502)

This commit is contained in:
Adam Turner 2025-05-06 13:04:50 +01:00 committed by GitHub
parent bf8bbe9a81
commit f8691901d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 219 deletions

View file

@ -12,14 +12,6 @@ Python module.
#include "zdict.h"
// if you update the minimum version, you should update the compile
// check in configure.ac
#define PYTHON_MINIMUM_SUPPORTED_ZSTD_VERSION 10405
#if ZSTD_VERSION_NUMBER < PYTHON_MINIMUM_SUPPORTED_ZSTD_VERSION
#error "_zstd module requires zstd v1.4.5+"
#endif
/* Forward declaration of module state */
typedef struct _zstd_state _zstd_state;