Skip to content

Commit 40dfb44

Browse files
committed
Fix build for pypi release
Remove wheel as a requirement
1 parent a37b396 commit 40dfb44

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Install Dependencies and Package
2626
run: |
27-
python -m pip install --upgrade pip setuptools wheel
27+
python -m pip install --upgrade pip setuptools
2828
pip install -U -r requirements.txt
2929
pip install -e .[docs]
3030

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
- name: Install Dependencies
2121
run: |
22-
python -m pip install --upgrade pip setuptools wheel
22+
python -m pip install --upgrade pip setuptools build
2323
2424
- name: Build Project
25-
run: python setup.py sdist
25+
run: python -m build
2626

2727
- name: Publish a Python distribution to PyPI
2828
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Install Dependencies and Package
2828
run: |
29-
python -m pip install --upgrade pip setuptools wheel
29+
python -m pip install --upgrade pip setuptools
3030
pip install -U -r requirements.txt
3131
pip install -e .[tests]
3232
@@ -54,7 +54,7 @@ jobs:
5454

5555
- name: Install Dependencies and Project
5656
run: |
57-
python -m pip install --upgrade pip setuptools wheel
57+
python -m pip install --upgrade pip setuptools
5858
pip install -U -r requirements.txt
5959
pip install -e .[dev]
6060
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Install Dependencies and Project
8181
run: |
82-
python -m pip install --upgrade pip setuptools wheel
82+
python -m pip install --upgrade pip setuptools
8383
pip install -U -r requirements.txt
8484
pip install -e .[dev]
8585

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ sphinx-build -b html -j auto -a -n -T -W --keep-going . _build/html
2020
Ensure you have the following dependencies installed in your environment:
2121

2222
```bash
23-
python -m pip install --upgrade pip setuptools wheel
23+
python -m pip install --upgrade pip setuptools
2424
pip install -U -r requirements.txt
2525
pip install -e .[docs]
2626
```

0 commit comments

Comments
 (0)