From 30df1b7c9712ebe8b2bf7f349e439b47bb19dae7 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Tue, 19 Mar 2024 14:37:21 +0100 Subject: [PATCH] Downgrade black version to 23.3.0 in the CI As of 23.10 black no longer supports python 3.7, but we still do. --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fa65652..77c9d04 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,6 +8,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: psf/black@stable + with: + black-version: 23.3.0 isort: runs-on: ubuntu-latest steps: @@ -15,4 +17,4 @@ jobs: - uses: actions/setup-python@v2 with: python-version: 3.7 - - uses: isort/isort-action@master \ No newline at end of file + - uses: isort/isort-action@master