summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsblondon <sblondon@users.noreply.github.com>2021-08-08 16:22:37 +0200
committerGitHub <noreply@github.com>2021-08-08 10:22:37 -0400
commit42d4ff331cb35e81f23dee29e99ee55f3d049d3b (patch)
tree397d83c2c770f29e0f3921e76077d01d6edf7627
parent3ea39b2c9c9f8e399bd725428ef1e4d8f48d273d (diff)
downloadpy-bcrypt-git-42d4ff331cb35e81f23dee29e99ee55f3d049d3b.tar.gz
python-six uneeded to build wheels (#266)
Python-six has been removed from the dependancies
-rw-r--r--.github/workflows/wheel-builder.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml
index 0d032e0..c88b07e 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -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;