From 1c75c903f834187709fdb82b2317ef8d394115ef Mon Sep 17 00:00:00 2001 From: Benjamin Kane Date: Mon, 12 Feb 2024 09:24:45 -0600 Subject: [PATCH] add build requirements --- .github/workflows/publish.yml | 2 +- pyproject.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5eb3c8e60..1a38fbab3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: python-version: 3 - name: Install dependencies run: | - pip install --upgrade 'pip<24.0' setuptools wheel twine + pip install --upgrade pip setuptools wheel twine - name: Install ETA run: | pip install --no-deps -e . diff --git a/pyproject.toml b/pyproject.toml index a989e275f..816d55c17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,5 @@ +[build-system] +requires = ["setuptools", "wheel"] [tool.black] line-length = 79 include = '\.pyi?$'