Drop support for Python 3.2

Closes #2314
This commit is contained in:
Julien Schueller 2022-07-18 11:01:31 +02:00 committed by Olly Betts
commit a55d40dbb5
2 changed files with 2 additions and 6 deletions

View file

@ -11,8 +11,8 @@
# error "This version of SWIG only supports Python >= 2.7"
#endif
#if PY_VERSION_HEX >= 0x03000000 && PY_VERSION_HEX < 0x03020000
# error "This version of SWIG only supports Python 3 >= 3.2"
#if PY_VERSION_HEX >= 0x03000000 && PY_VERSION_HEX < 0x03030000
# error "This version of SWIG only supports Python 3 >= 3.3"
#endif
/* Common SWIG API */