Skip to content

Commit

Permalink
Merge pull request #325 from lsst/tickets/DM-49197
Browse files Browse the repository at this point in the history
DM-49197: Fix astropy pformat_all deprecation
  • Loading branch information
dhirving authored Feb 26, 2025
2 parents 1164789 + 1ac8c1f commit fe75ee3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"lsst-pex-config",
"lsst-pipe-base",
"click",
"astropy",
"astropy >=7.0",
"pydantic >=2,<3.0",
"networkx",
"psutil"
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ctrl/mpexec/cmdLineFwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ def _summarize_qgraph(self, qgraph: QuantumGraph) -> int:
self.report = Report(qgraphSummary=qgraph.getSummary())
if _LOG.isEnabledFor(logging.INFO):
qg_task_table = self._generateTaskTable()
qg_task_table_formatted = "\n".join(qg_task_table.pformat_all())
qg_task_table_formatted = "\n".join(qg_task_table.pformat())
quanta_str = "quantum" if n_quanta == 1 else "quanta"
n_tasks = len(qgraph.taskGraph)
n_tasks_plural = "" if n_tasks == 1 else "s"
Expand Down

0 comments on commit fe75ee3

Please sign in to comment.