-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passage à Django 1.8 #3331
Passage à Django 1.8 #3331
Changes from all commits
9ce0d1b
c732cc4
2478e52
d4fb78b
1eb0c56
2b14c6a
59b088b
1e4deaf
bd1166d
39b67bc
b726b9b
08e930d
d390a62
9a0e6af
842b178
4919d30
46187ee
3341ebd
123c2e5
c49224e
0330427
abdba4f
2392ecf
3951bb8
821e366
addf026
6f78d62
bea004d
2cadc74
451e322
89ac99a
377f5ed
d9c1c85
32741f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
coverage==4.0.3 | ||
PyYAML==3.11 | ||
django-debug-toolbar==1.3.0 | ||
django-debug-toolbar==1.4 | ||
flake8==2.4.0 | ||
autopep8==1.1.1 | ||
sphinx==1.3.1 | ||
sphinx_rtd_theme==0.1.8 | ||
sphinx==1.2.3 | ||
sphinx_rtd_theme==0.1.6 | ||
fake-factory==0.5.0 | ||
mock |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,32 +4,31 @@ pygments==2.0.2 | |
python-social-auth==0.2.9 | ||
|
||
# Explicit dependencies (references in code) | ||
django==1.7.10 | ||
coverage==4.0.1 | ||
django-crispy-forms==1.4.0 | ||
Django==1.8.9 | ||
django-crispy-forms==1.6.0 | ||
django-haystack==2.4.1 | ||
django-model-utils==2.2 | ||
django-munin==0.2.0 | ||
django-model-utils==2.4 | ||
django-munin==0.2.1 | ||
python-memcached==1.54 | ||
lxml==3.4.4 | ||
factory-boy==2.4.1 | ||
factory-boy==2.6.1 | ||
pygeoip==0.3.2 | ||
pillow==2.9.0 | ||
pillow==3.1.1 | ||
gitpython==1.0.1 | ||
https://github.com/zestedesavoir/Python-ZMarkdown/archive/2.6.0-zds.7.zip | ||
easy-thumbnails==2.2 | ||
CairoSVG==1.0.13 | ||
beautifulsoup4==4.3.2 | ||
CairoSVG==1.0.19 | ||
beautifulsoup4==4.4.1 | ||
django-recaptcha==1.0.4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bs4 est à passer en version 4.4.1 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
|
||
# Api dependencies | ||
djangorestframework==3.1.1 | ||
djangorestframework-xml==1.0.1 | ||
django-filter==0.9.2 | ||
django-oauth-toolkit==0.9.0 | ||
drf-extensions==0.2.7 | ||
django-rest-swagger==0.2.9 | ||
django-cors-headers==1.0.0 | ||
djangorestframework==3.3.2 | ||
djangorestframework-xml==1.3.0 | ||
django-filter==0.12 | ||
django-oauth-toolkit==0.10.0 | ||
drf-extensions==0.2.8 | ||
django-rest-swagger==0.3.4 | ||
django-cors-middleware==1.2.0 | ||
dry-rest-permissions==0.1.6 | ||
|
||
# Zep 12 dependency | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ cd /opt/zdsenv/ZesteDeSavoir/ | |
# Maintenance mode | ||
sudo rm /etc/nginx/sites-enabled/zestedesavoir | ||
sudo ln -s /etc/nginx/sites-available/zds-maintenance /etc/nginx/sites-enabled/zds-maintenance | ||
sudo systemctl reload nginx.service | ||
sudo service nginx reload | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Euh, pourquoi ? Même si techniquement, ça marche, puisque There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Je ne sais pas le pourquoi, mais cette modif n'a pas lieu d'être. À supprimer. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @SpaceFox Cette modification a été faite dans l'un de tes commits : https://github.com/GerardPaligot/zds-site/commit/8b2ddae1f9562670edfc5ea52f78b20744649d20 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
# Delete old branch if exists | ||
git checkout prod | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% comment %} | ||
THIS IS A TEMP FIX FOR DJANGO-CRISPY-FORM, please remove it when | ||
https://github.com/maraujop/django-crispy-forms/pull/551 will be merged and include in a release | ||
{% endcomment %} | ||
|
||
<div {% if buttonholder.css_id %}id="{{ buttonholder.css_id }}"{% endif %} | ||
class="buttonHolder{% if buttonholder.css_class %} {{ buttonholder.css_class }}{% endif %}"> | ||
{{ fields_output|safe }} | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version 1.0.2 (il semble même que c'est un de nos commit qui est en jeu sur cette dep)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
attention à la version 1.0.2 de gitpython, j'ai vu passer des regression sur leur dépot. Je regarderai ça de plus près pour voir en quoi c'est impactant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On va éviter pour le moment alors.