From 6696e4bff4e6cb728e3cc69b074e87969bb3e624 Mon Sep 17 00:00:00 2001 From: Sebastian Achim Mueller Date: Wed, 4 Oct 2023 14:21:21 +0200 Subject: [PATCH] update black-pack --- .github/workflows/test.yml | 4 ++-- project.toml => pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename project.toml => pyproject.toml (61%) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 442009f..a63f5a0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,10 +18,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install pip --upgrade python -m pip install pytest python -m pip install -r requirements.txt python -m pip install . - name: Test with pytest run: | - pytest . + pytest . \ No newline at end of file diff --git a/project.toml b/pyproject.toml similarity index 61% rename from project.toml rename to pyproject.toml index b0f0765..3331949 100644 --- a/project.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools>=42"] +requires = ["setuptools>=49.6.0"] build-backend = "setuptools.build_meta"