Also update setuptools with pip

master
Cristi Vîjdea 2018-12-19 21:15:29 +02:00
parent 1fc454fcfa
commit a24070446a
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ jobs:
fast_finish: true fast_finish: true
install: install:
- python -m pip install -U pip - python -m pip install -U pip setuptools
- pip install -r requirements/ci.txt - pip install -r requirements/ci.txt
before_script: before_script:

View File

@ -35,7 +35,7 @@ You want to contribute some code? Great! Here are a few steps to get you started
$ virtualenv venv $ virtualenv venv
$ source venv/bin/activate $ source venv/bin/activate
(venv) $ python -m pip install -U pip (venv) $ python -m pip install -U pip setuptools
(venv) $ pip install -U -e .[validation] (venv) $ pip install -U -e .[validation]
(venv) $ pip install -U -r requirements/dev.txt (venv) $ pip install -U -r requirements/dev.txt

View File

@ -294,7 +294,7 @@ For additional usage examples, you can take a look at the test project in the ``
$ virtualenv venv $ virtualenv venv
$ source venv/bin/activate $ source venv/bin/activate
(venv) $ cd testproj (venv) $ cd testproj
(venv) $ python -m pip install -U pip (venv) $ python -m pip install -U pip setuptools
(venv) $ pip install -U -r requirements.txt (venv) $ pip install -U -r requirements.txt
(venv) $ python manage.py migrate (venv) $ python manage.py migrate
(venv) $ python manage.py shell -c "import createsuperuser" (venv) $ python manage.py shell -c "import createsuperuser"