aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/scalapack.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-07 20:56:27 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-06-09 09:46:37 +0200
commit2263a84d0796ffe93c3dc33502dc13412fbd4afe (patch)
tree6bb428477e7a0d25cffb96fddbc53f3ce94d7513 /mesonbuild/dependencies/scalapack.py
parenta8cd45d3ab2c84f15b7f4bdc3fee3dbac4eaa3ba (diff)
downloadmeson-2263a84d0796ffe93c3dc33502dc13412fbd4afe.zip
meson-2263a84d0796ffe93c3dc33502dc13412fbd4afe.tar.gz
meson-2263a84d0796ffe93c3dc33502dc13412fbd4afe.tar.bz2
typing: Rename some variables
Diffstat (limited to 'mesonbuild/dependencies/scalapack.py')
-rw-r--r--mesonbuild/dependencies/scalapack.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/dependencies/scalapack.py b/mesonbuild/dependencies/scalapack.py
index 70dbbf0..707e698 100644
--- a/mesonbuild/dependencies/scalapack.py
+++ b/mesonbuild/dependencies/scalapack.py
@@ -25,14 +25,14 @@ from .factory import factory_methods
if T.TYPE_CHECKING:
from ..environment import Environment, MachineChoice
- from .factory import TV_DepGenerators
+ from .factory import DependencyGenerator
@factory_methods({DependencyMethods.PKGCONFIG, DependencyMethods.CMAKE})
def scalapack_factory(env: 'Environment', for_machine: 'MachineChoice',
kwargs: T.Dict[str, T.Any],
- methods: T.List[DependencyMethods]) -> 'TV_DepGenerators':
- candidates: 'TV_DepGenerators' = []
+ methods: T.List[DependencyMethods]) -> T.List['DependencyGenerator']:
+ candidates: T.List['DependencyGenerator'] = []
if DependencyMethods.PKGCONFIG in methods:
mkl = 'mkl-static-lp64-iomp' if kwargs.get('static', False) else 'mkl-dynamic-lp64-iomp'