python-six uneeded to build wheels (#266)

Python-six has been removed from the dependancies
This commit is contained in:
sblondon 2021-08-08 16:22:37 +02:00 committed by GitHub
parent 3ea39b2c9c
commit 42d4ff331c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ jobs:
steps:
- run: /opt/python/${{ matrix.PYTHON.VERSION }}/bin/python -m venv .venv
- name: Install python dependencies
run: .venv/bin/pip install -U pip wheel cffi six
run: .venv/bin/pip install -U pip wheel cffi
- run: .venv/bin/pip download bcrypt==${{ github.event.inputs.version }} --no-deps --no-binary bcrypt && tar zxvf bcrypt*.tar.gz && mkdir tmpwheelhouse
- run: cd bcrypt* && ../.venv/bin/python setup.py bdist_wheel --py-limited-api=${{ matrix.PYTHON.ABI_VERSION }} && mv dist/bcrypt*.whl ../tmpwheelhouse
- run: auditwheel repair tmpwheelhouse/bcrypt*.whl -w wheelhouse/
@ -51,7 +51,7 @@ jobs:
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg
sudo installer -pkg python.pkg -target /
- run: ${{ matrix.PYTHON.BIN_PATH }} -m venv venv
- run: venv/bin/pip install -U pip wheel cffi six
- run: venv/bin/pip install -U pip wheel cffi
- run: venv/bin/pip download bcrypt==${{ github.event.inputs.version }} --no-deps --no-binary bcrypt && tar zxvf bcrypt*.tar.gz && mkdir wheelhouse
- run: cd bcrypt* && ../venv/bin/python setup.py bdist_wheel --py-limited-api=${{ matrix.PYTHON.ABI_VERSION }} && mv dist/bcrypt*.whl ../wheelhouse
- run: venv/bin/pip install -f wheelhouse --no-index bcrypt
@ -82,7 +82,7 @@ jobs:
with:
python-version: ${{ matrix.PYTHON.VERSION }}
architecture: ${{ matrix.WINDOWS }}
- run: python -m pip install -U pip wheel cffi six
- run: python -m pip install -U pip wheel cffi
- run: pip download bcrypt==${{ github.event.inputs.version }} --no-deps --no-binary bcrypt && tar zxvf bcrypt*.tar.gz && mkdir wheelhouse
shell: bash
- run: cd bcrypt* && python setup.py bdist_wheel --py-limited-api=${{ matrix.PYTHON.ABI_VERSION }} && mv dist/bcrypt*.whl ../wheelhouse
@ -118,7 +118,7 @@ jobs:
mkdir -p /github/home/.cache/pip;
chown -R $(whoami) /github/home/.cache;
/opt/python/${{ matrix.PYTHON.VERSION }}/bin/python -m venv .venv;
.venv/bin/pip install -U pip wheel cffi six;
.venv/bin/pip install -U pip wheel cffi;
.venv/bin/pip download bcrypt==${{ github.event.inputs.version }} --no-deps --no-binary bcrypt;
tar zxvf bcrypt*.tar.gz;
mkdir tmpwheelhouse;