diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3bd134a..f7c6f0c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -178,7 +178,7 @@ jobs: set -x sudo apt-get update && sudo apt-get install -y libopenmpi-dev curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-mypy.sh - export EXTRA_INSTALL="pytools numpy types-psutil pymbolic mpi4py matplotlib pylab" + export EXTRA_INSTALL="pytools numpy types-psutil pymbolic mpi4py matplotlib" . ./prepare-and-run-mypy.sh python3 pytest: diff --git a/logpyle/runalyzer.py b/logpyle/runalyzer.py index 29ffeda..2e502f5 100644 --- a/logpyle/runalyzer.py +++ b/logpyle/runalyzer.py @@ -397,7 +397,7 @@ def execute_magic(self, cmdline: str) -> None: # noqa: C901 elif cmd == "logging": self.db.print_cursor(self.db.q("select * from logging")) elif cmd == "title": - from pylab import title + from matplotlib.pyplot import title title(args) elif cmd == "plot": cursor = self.db.db.execute(self.db.mangle_sql(args))