From dd365d1f4b6c7c08cecb75fbe298e3aa51a3a110 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 7 Sep 2025 08:58:41 +0200 Subject: [PATCH] explicit define pyproject.toml as tox at least 4.30.2 is otherwise using EOL setup.cfg --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82ac574f..34774410 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - name: Install Test dependencies run: pip install tox - name: Test - run: tox -e py + run: tox -c pyproject.toml -e py - name: Install Coveralls if: github.event_name == 'push' run: pip install coveralls @@ -55,4 +55,4 @@ jobs: - name: Install tox run: pip install tox - name: Lint - run: tox -e flake8,mypy,isort + run: tox -c pyproject.toml -e flake8,mypy,isort