File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ To run all tests using various versions of python in virtualenvs defined in tox.
39
39
It is possible to test with a specific version of python. To do this, the command
40
40
is::
41
41
42
- $ tox -e py36
42
+ $ tox -e py37
43
43
44
- This will run py.test with the python3.6 interpreter, for example.
44
+ This will run py.test with the python3.7 interpreter, for example.
45
45
46
46
To run a particular test with tox for against your current Python version::
47
47
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Features
37
37
---------
38
38
39
39
* For Django 2.2
40
- * Works with Python 3.6
40
+ * Works with Python 3.7
41
41
* Renders Django projects with 100% starting test coverage
42
42
* Twitter Bootstrap _ v4 (`maintained Foundation fork `_ also available)
43
43
* 12-Factor _ based settings via django-environ _
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Make sure your project is fully committed and pushed up to Bitbucket or Github o
35
35
36
36
git clone < my-repo-url> # you can also use hg
37
37
cd my-project-name
38
- mkvirtualenv --python=/usr/bin/python3.6 my-project-name
38
+ mkvirtualenv --python=/usr/bin/python3.7 my-project-name
39
39
pip install -r requirements/production.txt # may take a few minutes
40
40
41
41
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ Setting Up Development Environment
9
9
10
10
Make sure to have the following on your host:
11
11
12
- * Python 3.6
12
+ * Python 3.7
13
13
* PostgreSQL _.
14
14
* Redis _, if using Celery
15
15
16
16
First things first.
17
17
18
18
#. Create a virtualenv: ::
19
19
20
- $ python3.6 -m venv <virtual env path>
20
+ $ python3.7 -m venv <virtual env path>
21
21
22
22
#. Activate the virtualenv you have just created: ::
23
23
You can’t perform that action at this time.
0 commit comments