Skip to content

Commit

Permalink
add wheel build step
Browse files Browse the repository at this point in the history
  • Loading branch information
Koeng101 committed Aug 17, 2024
1 parent dd16037 commit 4f45ca0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Specify the Python version you're using
python-version: '3.10' # Specify the Python version you're using

- name: Build wheel
working-directory: ./py
run: |
pip install wheel packaging setuptools cffi
python setup.py bdist_wheel --plat-name manylinux2014_x86_64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cffi
pip install pdoc3 # Install pdoc3
pip install -e ./py # Install your package in editable mode
Expand Down

0 comments on commit 4f45ca0

Please sign in to comment.