mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
Merge pull request #395 from pydanny/update-requirements
update requirements
This commit is contained in:
commit
c5fcb4895b
|
@ -2,6 +2,12 @@
|
|||
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [2015-11-04]
|
||||
### Changed
|
||||
- Update version of Django, cookiecutter, celery, coverage, django-mailgun, django-redis, factory_boy, flake8, pytest and pytz (@luzfcb)
|
||||
- Update AngularJS version to 1.4.7 (@luzfcb)
|
||||
- Update 'now' date in cookiecutter.json (@luzfcb)
|
||||
|
||||
## [2015-10-28]
|
||||
### Changed
|
||||
- Update deployment-on-heroku.rst for ADMIN_URL (@yunti)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"domain_name": "example.com",
|
||||
"version": "0.1.0",
|
||||
"timezone": "UTC",
|
||||
"now": "2015/09/30",
|
||||
"now": "2015/11/04",
|
||||
"year": "{{ cookiecutter.now[:4] }}",
|
||||
"use_whitenoise": "y",
|
||||
"use_celery": "n",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
cookiecutter==1.1.0
|
||||
flake8==2.4.1
|
||||
cookiecutter==1.2.1
|
||||
flake8==2.5.0
|
||||
sh
|
||||
|
||||
# Debugging
|
||||
|
@ -9,7 +9,7 @@ ipython==4.0.0
|
|||
|
||||
# Testing
|
||||
# -------------------------------------
|
||||
pytest==2.8.1
|
||||
pytest==2.8.2
|
||||
git+git://github.com/mverteuil/pytest-ipdb.git
|
||||
pep8==1.6.2
|
||||
pyflakes==1.0.0
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Bleeding edge Django
|
||||
django==1.8.5
|
||||
django==1.8.6
|
||||
|
||||
# Configuration
|
||||
django-environ==0.4.0
|
||||
|
@ -37,14 +37,14 @@ unicode-slugify==0.1.3
|
|||
django-autoslug==1.9.3
|
||||
|
||||
# Time zones support
|
||||
pytz==2015.6
|
||||
pytz==2015.7
|
||||
|
||||
# Redis support
|
||||
django-redis==4.2.0
|
||||
django-redis==4.3.0
|
||||
redis>=2.10.0
|
||||
|
||||
{% if cookiecutter.use_celery == "y" %}
|
||||
celery==3.1.18
|
||||
celery==3.1.19
|
||||
{% endif %}
|
||||
|
||||
# Your custom requirements go here
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Local development dependencies go here
|
||||
-r base.txt
|
||||
coverage==4.0.1
|
||||
coverage==4.0.2
|
||||
Sphinx
|
||||
django-extensions==1.5.7
|
||||
Werkzeug==0.10.4
|
||||
|
|
|
@ -24,7 +24,7 @@ Collectfast==0.2.3
|
|||
|
||||
# Mailgun Support
|
||||
# ---------------
|
||||
django-mailgun==0.7.2
|
||||
django-mailgun==0.8.0
|
||||
|
||||
{% if cookiecutter.use_sentry == "y" -%}
|
||||
# Raven is the Sentry client
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
psycopg2==2.6.1
|
||||
{%- endif %}
|
||||
|
||||
coverage==4.0
|
||||
flake8==2.4.1
|
||||
coverage==4.0.2
|
||||
flake8==2.5.0
|
||||
django-test-plus==1.0.9
|
||||
factory_boy==2.5.2
|
||||
factory_boy==2.6.0
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block angular %}
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.4/angular.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
|
||||
{% endblock %}
|
||||
|
||||
</head>
|
||||
|
|
Loading…
Reference in New Issue
Block a user