setuptools is not stdlib, but distutils is

pull/7436/head
Michael Hirsch 4 years ago
parent d769b425f0
commit ab72f52743
No known key found for this signature in database
GPG Key ID: 6D23CDADAB0294F9
  1. 2
      test cases/python/5 modules kwarg/meson.build

@ -1,7 +1,7 @@
project('python kwarg')
py = import('python')
prog_python = py.find_installation('python3', modules : ['setuptools'])
prog_python = py.find_installation('python3', modules : ['distutils'])
assert(prog_python.found() == true, 'python not found when should be')
prog_python = py.find_installation('python3', modules : ['thisbetternotexistmod'], required : false)
assert(prog_python.found() == false, 'python not found but reported as found')

Loading…
Cancel
Save