Skip to content

Commit 877af7b

Browse files
das-gekohl
authored andcommitted
Allow for higher Bugfix/Patch version of Django
I.e. Django 2.0.x, where x ≥ 6
1 parent 7422fff commit 877af7b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

en/django_installation/instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,15 @@ In your `djangogirls/requirements.txt` file you should add the following text:
183183
184184
{% filename %}djangogirls/requirements.txt{% endfilename %}
185185
```
186-
Django=={{ book.django_version }}
186+
Django~={{ book.django_version }}
187187
```
188188
189189
Now, run `pip install -r requirements.txt` to install Django.
190190
191191
{% filename %}command-line{% endfilename %}
192192
```
193193
(myvenv) ~$ pip install -r requirements.txt
194-
Collecting Django=={{ book.django_version }} (from -r requirements.txt (line 1))
194+
Collecting Django~={{ book.django_version }} (from -r requirements.txt (line 1))
195195
Downloading Django-{{ book.django_version }}-py3-none-any.whl (7.1MB)
196196
Installing collected packages: Django
197197
Successfully installed Django-{{ book.django_version }}

0 commit comments

Comments
 (0)