Skip to content

Commit acb72cb

Browse files
committed
Updated docs
1 parent 02a0928 commit acb72cb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ To run all tests using various versions of python in virtualenvs defined in tox.
3939
It is possible to test with a specific version of python. To do this, the command
4040
is::
4141

42-
$ tox -e py36
42+
$ tox -e py37
4343

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.
4545

4646
To run a particular test with tox for against your current Python version::
4747

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Features
3737
---------
3838

3939
* For Django 2.2
40-
* Works with Python 3.6
40+
* Works with Python 3.7
4141
* Renders Django projects with 100% starting test coverage
4242
* Twitter Bootstrap_ v4 (`maintained Foundation fork`_ also available)
4343
* 12-Factor_ based settings via django-environ_

docs/deployment-on-pythonanywhere.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Make sure your project is fully committed and pushed up to Bitbucket or Github o
3535
3636
git clone <my-repo-url> # you can also use hg
3737
cd my-project-name
38-
mkvirtualenv --python=/usr/bin/python3.6 my-project-name
38+
mkvirtualenv --python=/usr/bin/python3.7 my-project-name
3939
pip install -r requirements/production.txt # may take a few minutes
4040
4141

docs/developing-locally.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Setting Up Development Environment
99

1010
Make sure to have the following on your host:
1111

12-
* Python 3.6
12+
* Python 3.7
1313
* PostgreSQL_.
1414
* Redis_, if using Celery
1515

1616
First things first.
1717

1818
#. Create a virtualenv: ::
1919

20-
$ python3.6 -m venv <virtual env path>
20+
$ python3.7 -m venv <virtual env path>
2121

2222
#. Activate the virtualenv you have just created: ::
2323

0 commit comments

Comments
 (0)