Commit 83b20345 authored by Godefroid Chapelle's avatar Godefroid Chapelle

Problem: setuptools bootstrap is gone

Solution: install setuptools from github with pip
parent e1bb5c7a
...@@ -16,9 +16,6 @@ jobs: ...@@ -16,9 +16,6 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: checkout setuptools
run: |
git clone https://github.com/pypa/setuptools.git
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
...@@ -31,9 +28,7 @@ jobs: ...@@ -31,9 +28,7 @@ jobs:
PYTHON_VERSION: ${{matrix.python-version}} PYTHON_VERSION: ${{matrix.python-version}}
run: | run: |
./sandbox/bin/pip uninstall -y setuptools ./sandbox/bin/pip uninstall -y setuptools
cd setuptools ./sandbox/bin/pip install -e "git+https://github.com/pypa/setuptools.git#egg=setuptools"
../sandbox/bin/python bootstrap.py
../sandbox/bin/python setup.py develop
ls ../sandbox/lib/python${PYTHON_VERSION}/site-packages ls ../sandbox/lib/python${PYTHON_VERSION}/site-packages
- name: Run buildout - name: Run buildout
env: env:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment