diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-08-03 14:53:09 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-10-20 15:15:53 -0700 |
| commit | 87dac856b61dbd98e922aa159f08bce4852941d9 (patch) | |
| tree | 63c4c3a88da670622fa8b2f5c44d3923493c6774 /mesonbuild/dependencies/python.py | |
| parent | 2496bf2cf0781013ced5926b2be76a6a828e8cee (diff) | |
| download | meson-87dac856b61dbd98e922aa159f08bce4852941d9.tar.gz | |
dependencies: Add remaining internal arguments to Dependency classes
These may be better replaced by setting instance attributes, honestly.
Diffstat (limited to 'mesonbuild/dependencies/python.py')
| -rw-r--r-- | mesonbuild/dependencies/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py index 021bd3294..707e07499 100644 --- a/mesonbuild/dependencies/python.py +++ b/mesonbuild/dependencies/python.py @@ -591,7 +591,7 @@ def python_factory(env: 'Environment', for_machine: 'MachineChoice', if mesonlib.version_compare(installation.version, '>= 3'): # There is a python in /System/Library/Frameworks, but that's python 2.x, # Python 3 will always be in /Library - nkwargs['paths'] = ['/Library/Frameworks'] # type: ignore[typeddict-unknown-key] + nkwargs['paths'] = ['/Library/Frameworks'] candidates.append(functools.partial(PythonFrameworkDependency, 'Python', env, nkwargs, installation, for_machine)) return candidates |
