Skip to content

Commit

Permalink
remove pylab
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Dec 22, 2024
1 parent 90b1c50 commit 030f62c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion logpyle/runalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 030f62c

Please sign in to comment.