Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update waf to 2.1.2 #2589

Merged
merged 2 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@

# Some tools will be downloaded for the builds. These are the versions and
# MD5s of the tool binaries currently in use.
wafCurrentVersion = '2.0.24'
wafMD5 = '698f382cca34a08323670f34830325c4'
wafCurrentVersion = '2.1.2'
wafMD5 = '8ff717c068819e488a337030ec8abf6c'

doxygenCurrentVersion = '1.8.8'
doxygenMD5 = {
Expand Down
8 changes: 1 addition & 7 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,7 @@ def configure(conf):
conf.env.PYTHON = conf.options.python
conf.load('python')
conf.check_python_version(minver=(3,7,0))
if isWindows:
# Search for the Python headers without doing some stuff that could
# incorrectly fail on Windows. See my_check_python_headers below.
# TODO: Check if it can/should be used on other platforms too.
conf.my_check_python_headers()
else:
conf.check_python_headers(features='pyext')
conf.check_python_headers(features='pyext')

# fetch and save the debug options
conf.env.debug = conf.options.debug
Expand Down