Also update setuptools with pip
parent
1fc454fcfa
commit
a24070446a
|
|
@ -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:
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue