Skip to content

Commit 6938355

Browse files
committed
Merge pull request #262 from rg3915/pelican
Update django version
2 parents 47434f8 + a137f5a commit 6938355

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/django-rest-framework-serialization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Então para criar a API, no meu caso, eu usei:
4545
$ virtualenv -p python3 .venv
4646
$ source .venv/bin/activate
4747
$ mkdir drf; cd drf
48-
$ pip install django==1.8.6 djangorestframework==3.3.1
48+
$ pip install django==1.9.5 djangorestframework==3.3.3
4949
$ pip install django-filter drf-nested-routers
5050
$ pip freeze > requirements.txt
5151
$ django-admin.py startproject myproject .
@@ -55,9 +55,9 @@ $ python manage.py startapp core
5555
Veja o meu requirements.txt
5656

5757
```bash
58-
Django==1.8.6
58+
Django==1.9.5
5959
django-filter==0.11.0
60-
djangorestframework==3.3.1
60+
djangorestframework==3.3.3
6161
drf-nested-routers==0.10.0
6262
```
6363
## Step-0 Projeto inicial

0 commit comments

Comments
 (0)