diff options
author | Michael Hirsch <scivision@users.noreply.github.com> | 2020-07-12 09:01:55 -0400 |
---|---|---|
committer | Michael Hirsch <scivision@users.noreply.github.com> | 2020-07-12 09:01:55 -0400 |
commit | ab72f52743518915c7602f6d3631b9cb8080e0e2 (patch) | |
tree | da8def94b77315e2ae0254b7ed41ca89a03a3cba | |
parent | d769b425f0b56779bad571fbf7145c8d2f7fecc9 (diff) | |
download | meson-ab72f52743518915c7602f6d3631b9cb8080e0e2.zip meson-ab72f52743518915c7602f6d3631b9cb8080e0e2.tar.gz meson-ab72f52743518915c7602f6d3631b9cb8080e0e2.tar.bz2 |
setuptools is not stdlib, but distutils is
-rw-r--r-- | test cases/python/5 modules kwarg/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/python/5 modules kwarg/meson.build b/test cases/python/5 modules kwarg/meson.build index 3c9d54f..9751ada 100644 --- a/test cases/python/5 modules kwarg/meson.build +++ b/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') |