From a821ec71b1d05c8c13884461a04d7566e0e4f6ed Mon Sep 17 00:00:00 2001 From: Jasha Sommer-Simpson <8935917+Jasha10@users.noreply.github.com> Date: Thu, 2 Jan 2025 11:06:52 -0500 Subject: [PATCH 1/2] Try to fix CI by modifying noxfile --- noxfile.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index db547cb30..9b4d4bfdf 100644 --- a/noxfile.py +++ b/noxfile.py @@ -90,9 +90,6 @@ def test_jupyter_notebook(session: Session) -> None: # Ignore deprecation warnings raised by jupyter_client in Python 3.10 # https://github.com/jupyter/jupyter_client/issues/713 "-Wdefault:There is no current event loop:DeprecationWarning", - # Block warning issued by nbval - # https://github.com/computationalmodelling/nbval/issues/180 - "-Wdefault::pytest.PytestRemovedIn8Warning", ] ) session.run( From d1a2b423e4728aa0d83e1fe83a733b30e13675c7 Mon Sep 17 00:00:00 2001 From: Jasha Sommer-Simpson <8935917+Jasha10@users.noreply.github.com> Date: Thu, 2 Jan 2025 12:28:56 -0500 Subject: [PATCH 2/2] rm unused type: ignore comment --- build_helpers/build_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_helpers/build_helpers.py b/build_helpers/build_helpers.py index 25b057055..6609bfd19 100644 --- a/build_helpers/build_helpers.py +++ b/build_helpers/build_helpers.py @@ -148,7 +148,7 @@ def run(self) -> None: # type: ignore class SDistCommand(sdist.sdist): # pragma: no cover def run(self) -> None: - if not self.dry_run: # type: ignore + if not self.dry_run: self.run_command("clean") run_antlr(self) sdist.sdist.run(self)