1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 06:37:17 +00:00

Minimum Python version is now 3.3

This commit is contained in:
Virgil Dupras
2013-12-07 17:23:18 -05:00
parent c7c7a73384
commit 3e42ad8469
6 changed files with 12 additions and 27 deletions

View File

@@ -31,7 +31,7 @@ def configure(conf):
os.symlink('../build/Python', versioned_dylib_path)
# The rest is standard WAF code that you can find the the python and macapp demos.
conf.load('compiler_c python')
conf.check_python_version((3,2,0))
conf.check_python_version((3,3,0))
conf.check_python_headers()
conf.env.FRAMEWORK_COCOA = 'Cocoa'
conf.env.ARCH_COCOA = ['x86_64']