File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 33
33
34
34
before_script : .travis/before_script.sh
35
35
36
- install : pip install coveralls tox-travis
36
+ install : python -m pip install coveralls tox-travis
37
37
38
38
script :
39
39
- coverage erase
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ Ready to contribute? Here's how to set up Django-MySQL for local development.
105
105
106
106
.. code-block :: sh
107
107
108
- $ pip install tox
108
+ $ python -m pip install tox
109
109
$ tox -e py36-django21
110
110
111
111
The ``tox.ini `` file defines a large number of test environments, for
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Install it with **pip**:
19
19
20
20
.. code-block :: console
21
21
22
- $ pip install django-mysql
22
+ $ python -m pip install django-mysql
23
23
24
24
Or add it to your project's ``requirements.txt ``.
25
25
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ to pack and unpack Dynamic Columns blobs in Python rather than in MariaDB
44
44
To use this field, you'll need to:
45
45
46
46
1. Use MariaDB 10.0.2+
47
- 2. Install ``mariadb-dyncol `` (``pip install mariadb-dyncol ``)
47
+ 2. Install ``mariadb-dyncol `` (``python -m pip install mariadb-dyncol ``)
48
48
3. Use either the ``utf8mb4 `` or ``utf8 `` character set for your
49
49
database connection.
50
50
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ passenv =
13
13
DB_PASSWORD
14
14
DB_HOST
15
15
DB_PORT
16
- install_command = pip install --no-deps {opts} {packages} --no-cache-dir
16
+ install_command = python -m pip install --no-deps {opts} {packages} --no-cache-dir
17
17
commands = coverage run --parallel -m pytest {posargs}
18
18
19
19
[testenv:py35-django111]
You can’t perform that action at this time.
0 commit comments