mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-07-16 11:02:22 +03:00
Changed requirements files to match current dependency versions
This commit is contained in:
parent
5c19e0d5f2
commit
f573fbcb7d
|
@ -2,11 +2,14 @@
|
||||||
All enhancements and patches to cookiecutter-django will be documented in this file.
|
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [2015-08-20]
|
||||||
|
### Changed
|
||||||
|
- requirements files to match current dependency versions (@pydanny)
|
||||||
|
|
||||||
## [2015-08-18]
|
## [2015-08-18]
|
||||||
### Added
|
### Added
|
||||||
- Docker support and docker-compose (@jayfk)
|
- Docker support and docker-compose (@jayfk)
|
||||||
|
|
||||||
|
|
||||||
## [2015-08-12]
|
## [2015-08-12]
|
||||||
### Added
|
### Added
|
||||||
- hitch for end-to-end testing functionality (@crdoconnor)
|
- hitch for end-to-end testing functionality (@crdoconnor)
|
||||||
|
|
|
@ -5,7 +5,7 @@ sh
|
||||||
# Debugging
|
# Debugging
|
||||||
# -------------------------------------
|
# -------------------------------------
|
||||||
ipdb==0.8.1
|
ipdb==0.8.1
|
||||||
ipython==3.2.1
|
ipython==4.0.0
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
# -------------------------------------
|
# -------------------------------------
|
||||||
|
|
|
@ -5,13 +5,13 @@ django==1.8.4
|
||||||
django-environ==0.3.0
|
django-environ==0.3.0
|
||||||
django-secure==1.0.1
|
django-secure==1.0.1
|
||||||
{% if cookiecutter.use_whitenoise == 'y' -%}
|
{% if cookiecutter.use_whitenoise == 'y' -%}
|
||||||
whitenoise==2.0.2
|
whitenoise==2.0.3
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
|
|
||||||
# Forms
|
# Forms
|
||||||
django-braces==1.8.1
|
django-braces==1.8.1
|
||||||
django-crispy-forms==1.4.0
|
django-crispy-forms==1.5.0
|
||||||
django-floppyforms==1.5.2
|
django-floppyforms==1.5.2
|
||||||
|
|
||||||
# Models
|
# Models
|
||||||
|
|
|
@ -4,7 +4,7 @@ coverage==3.7.1
|
||||||
Sphinx
|
Sphinx
|
||||||
django-extensions==1.5.5
|
django-extensions==1.5.5
|
||||||
Werkzeug==0.10.4
|
Werkzeug==0.10.4
|
||||||
django-test-plus==1.0.7
|
django-test-plus==1.0.8
|
||||||
factory_boy==2.5.2
|
factory_boy==2.5.2
|
||||||
|
|
||||||
# django-debug-toolbar that works with Django 1.5+
|
# django-debug-toolbar that works with Django 1.5+
|
||||||
|
|
|
@ -10,7 +10,7 @@ gunicorn==19.3.0
|
||||||
# Static and Media Storage
|
# Static and Media Storage
|
||||||
# ------------------------------------------------
|
# ------------------------------------------------
|
||||||
boto==2.38.0
|
boto==2.38.0
|
||||||
django-storages-redux==1.2.3
|
django-storages-redux==1.3
|
||||||
{% if cookiecutter.use_whitenoise != 'y' -%}
|
{% if cookiecutter.use_whitenoise != 'y' -%}
|
||||||
Collectfast==0.2.3
|
Collectfast==0.2.3
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
-r base.txt
|
-r base.txt
|
||||||
coverage==4.0b1
|
coverage==4.0b1
|
||||||
flake8==2.4.1
|
flake8==2.4.1
|
||||||
django-test-plus==1.0.7
|
django-test-plus==1.0.8
|
||||||
factory_boy==2.5.2
|
factory_boy==2.5.2
|
||||||
|
|
|
@ -1,26 +1,26 @@
|
||||||
click==4.0
|
click==5.1
|
||||||
colorama==0.3.3
|
colorama==0.3.3
|
||||||
faketime==0.9.6.3
|
faketime==0.9.6.3
|
||||||
hitchcron==0.2
|
hitchcron==0.2
|
||||||
hitchpostgres==0.6.1
|
hitchpostgres==0.6.2
|
||||||
hitchpython==0.2
|
hitchpython==0.3.2
|
||||||
hitchredis==0.4.1
|
hitchredis==0.4.1
|
||||||
hitchselenium==0.3.1
|
hitchselenium==0.4
|
||||||
hitchserve==0.4.2
|
hitchserve==0.4.3
|
||||||
hitchsmtp==0.2.1
|
hitchsmtp==0.2.1
|
||||||
hitchtest==0.7
|
hitchtest==0.7.5
|
||||||
humanize==0.5.1
|
humanize==0.5.1
|
||||||
ipython==3.1.0
|
ipython==4.0.0
|
||||||
Jinja2==2.7.3
|
Jinja2==2.8
|
||||||
MarkupSafe==0.23
|
MarkupSafe==0.23
|
||||||
patool==1.7
|
patool==1.8
|
||||||
psutil==3.0.0
|
psutil==3.1.1
|
||||||
python-build==0.2.1
|
python-build==0.2.1
|
||||||
pyuv==1.0.2
|
pyuv==1.1.0
|
||||||
PyYAML==3.11
|
PyYAML==3.11
|
||||||
requests==2.7.0
|
requests==2.7.0
|
||||||
selenium==2.46.0
|
selenium==2.47.1
|
||||||
six==1.9.0
|
six==1.9.0
|
||||||
tblib==1.0.1
|
tblib==1.1.0
|
||||||
tornado==4.2.1
|
tornado==4.2.1
|
||||||
xeger==0.3
|
xeger==0.3
|
||||||
|
|
Loading…
Reference in New Issue
Block a user