bindings: Update pybindgen version

This commit is contained in:
Tom Henderson
2020-10-08 10:37:29 -07:00
parent 23bb16aef1
commit f7871790c3

View File

@@ -14,7 +14,13 @@ from waflib.Errors import WafError
# after = TaskGen.after
# https://github.com/gjcarneiro/pybindgen
REQUIRED_PYBINDGEN_VERSION = '0.21.0'
# If specifying a released pybindgen version, specify the required PYBINDGEN
# version as, e.g. '0.21.0'
# If specifying a commit on the development tree, specify it like this based
# on 'git describe --tags' command. Example, if the latest release was 0.21.0,
# and 'git decribe --tags' reports "0.21.0-6-g8e7c0a9", then write the
# PYBINDGEN version string below as '0.21.0.post6+ng8e7c0a9'
REQUIRED_PYBINDGEN_VERSION = '0.21.0.post6+ng8e7c0a9'
REQUIRED_PYGCCXML_VERSION = (1, 9, 1)
REQUIRED_CASTXML_VERSION = '0.2'