From 4f45ca0b53238746f3d3a2022eddbe6e833f0987 Mon Sep 17 00:00:00 2001 From: Keoni Gandall Date: Sat, 17 Aug 2024 09:25:30 -0700 Subject: [PATCH] add wheel build step --- .github/workflows/docs.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index fbcfa19..6c2c181 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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