From 5d1c05316e1e1d2ceb5cfc9d1d28ac2a17f89627 Mon Sep 17 00:00:00 2001 From: Akuli Date: Wed, 7 Feb 2024 12:10:53 +0200 Subject: [PATCH] Commit the autofix part of #1435 directly to main --- .github/workflows/autofix.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index b8c7a8dc0..96b194521 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -40,6 +40,8 @@ jobs: import tomli with open("pr/pyproject.toml", "rb") as f: content = tomli.load(f) + for dep in content["project"]["dependencies"]: + print(dep) for dep in content["project"]["optional-dependencies"]["dev"]: print(dep) ' >> pr/requirements-dev.txt