Try matching how bdist_wheel is built locally.

This commit is contained in:
Matt Davis
2022-11-24 16:49:55 -05:00
parent 2087656a53
commit a81af08c7c
+4 -4
View File
@@ -38,18 +38,18 @@ jobs:
draft: false
prerelease: false
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy=eager pip setuptools wheel twine
python -m pip install .
python -m pip install -e . --upgrade
python -m pipenv install --dev
env:
PIPENV_DEFAULT_PYTHON_VERSION: "3.9"
PIPENV_DEFAULT_PYTHON_VERSION: "3.10"
- name: Build wheels
run: |