Skip to content

Commit

Permalink
Add build as a requirement for Python 3.9 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
TkTech committed Feb 7, 2025
1 parent 4037c30 commit 77e7dcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Installing python build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
python -m pip install --upgrade setuptools build
- name: Building source distribution
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Installing python build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
python -m pip install --upgrade setuptools build
- name: Installing release dependencies.
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=74.1", "build"]
requires = ["setuptools>=74.1"]
build-backend = "setuptools.build_meta"

[project]
Expand Down

0 comments on commit 77e7dcc

Please sign in to comment.