mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 11:34:00 +03:00
Merge pull request #494 from pydanny/update-requirements
Update requirements
This commit is contained in:
commit
1d731ae48a
|
@ -2,10 +2,19 @@
|
||||||
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/).
|
||||||
|
|
||||||
|
## [2016-03-01]
|
||||||
|
### Changed
|
||||||
|
- Update version of Django, flake8, pyflakes, pytest, factory_boy, ipdb, Werkzeug, gevent (@luzfcb)
|
||||||
|
- Update version of Hitch tests dependencies: click, hitchserve, hitchsystem, hitchtest, ipython, psutil, python-dateutil(@luzfcb)
|
||||||
|
- Update Tether (JS) version to 1.2.0 (@luzfcb)
|
||||||
|
|
||||||
## [2016-02-24]
|
## [2016-02-24]
|
||||||
### Added
|
### Added
|
||||||
- Beginning support for `py.test` (@pydanny)
|
- Beginning support for `py.test` (@pydanny)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Fixed missing div closing tag for "container" on user_list.html (@Eraldo)
|
||||||
|
|
||||||
## [2016-02-18]
|
## [2016-02-18]
|
||||||
### Changed
|
### Changed
|
||||||
- The status of the registration (open or closed) is now read from the project environment instead of hardcoded in the common settings file. (@Eraldo)
|
- The status of the registration (open or closed) is now read from the project environment instead of hardcoded in the common settings file. (@Eraldo)
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
cookiecutter==1.3.0
|
cookiecutter==1.3.0
|
||||||
flake8==2.5.2
|
flake8==2.5.4
|
||||||
sh==1.11
|
sh==1.11
|
||||||
binaryornot==0.4.0
|
binaryornot==0.4.0
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
pytest==2.8.7
|
pytest==2.9.0
|
||||||
pep8==1.7.0
|
pep8==1.7.0
|
||||||
pyflakes==1.0.0
|
pyflakes==1.1.0
|
||||||
tox==2.3.1
|
tox==2.3.1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -11,7 +11,7 @@ except ImportError:
|
||||||
|
|
||||||
# Our version ALWAYS matches the version of Django we support
|
# Our version ALWAYS matches the version of Django we support
|
||||||
# If Django has a new release, we branch, tag, then update this setting after the tag.
|
# If Django has a new release, we branch, tag, then update this setting after the tag.
|
||||||
version = "1.9.2"
|
version = "1.9.3"
|
||||||
|
|
||||||
if sys.argv[-1] == 'tag':
|
if sys.argv[-1] == 'tag':
|
||||||
os.system("git tag -a %s -m 'version %s'" % (version, version))
|
os.system("git tag -a %s -m 'version %s'" % (version, version))
|
||||||
|
|
|
@ -7,7 +7,7 @@ wheel==0.29.0
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
# Bleeding edge Django
|
# Bleeding edge Django
|
||||||
django==1.9.2
|
django==1.9.3
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
django-environ==0.4.0
|
django-environ==0.4.0
|
||||||
|
|
|
@ -4,15 +4,15 @@ coverage==4.0.3
|
||||||
django_coverage_plugin==1.2.2
|
django_coverage_plugin==1.2.2
|
||||||
Sphinx
|
Sphinx
|
||||||
django-extensions==1.6.1
|
django-extensions==1.6.1
|
||||||
Werkzeug==0.11.3
|
Werkzeug==0.11.4
|
||||||
django-test-plus==1.0.11
|
django-test-plus==1.0.11
|
||||||
factory_boy==2.6.0
|
factory_boy==2.6.1
|
||||||
|
|
||||||
# django-debug-toolbar that works with Django 1.5+
|
# django-debug-toolbar that works with Django 1.5+
|
||||||
django-debug-toolbar==1.4
|
django-debug-toolbar==1.4
|
||||||
|
|
||||||
# improved REPL
|
# improved REPL
|
||||||
ipdb==0.8.1
|
ipdb==0.9.0
|
||||||
|
|
||||||
# pytest!
|
# pytest!
|
||||||
pytest-django==2.9.1
|
pytest-django==2.9.1
|
||||||
|
|
|
@ -15,7 +15,7 @@ psycopg2==2.6.1
|
||||||
gevent==1.0.2
|
gevent==1.0.2
|
||||||
{% else %}
|
{% else %}
|
||||||
# there's no python 3 support in stable, have to use the latest release candidate for gevent
|
# there's no python 3 support in stable, have to use the latest release candidate for gevent
|
||||||
gevent==1.1rc3
|
gevent==1.1rc5
|
||||||
{% endif %}
|
{% endif %}
|
||||||
gunicorn==19.4.5
|
gunicorn==19.4.5
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,9 @@ psycopg2==2.6.1
|
||||||
|
|
||||||
coverage==4.0.3
|
coverage==4.0.3
|
||||||
django_coverage_plugin==1.2.2
|
django_coverage_plugin==1.2.2
|
||||||
flake8==2.5.2
|
flake8==2.5.4
|
||||||
django-test-plus==1.0.11
|
django-test-plus==1.0.11
|
||||||
factory_boy==2.6.0
|
factory_boy==2.6.1
|
||||||
|
|
||||||
# pytest!
|
# pytest!
|
||||||
pytest-django==2.9.1
|
pytest-django==2.9.1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
backports-abc==0.4
|
backports-abc==0.4
|
||||||
click==6.2
|
click==6.3
|
||||||
colorama==0.3.6
|
colorama==0.3.6
|
||||||
decorator==4.0.9
|
decorator==4.0.9
|
||||||
docopt==0.6.2
|
docopt==0.6.2
|
||||||
|
@ -9,12 +9,12 @@ hitchpostgres==0.7.0
|
||||||
hitchpython==0.5.3
|
hitchpython==0.5.3
|
||||||
hitchredis==0.4.6
|
hitchredis==0.4.6
|
||||||
hitchselenium==0.5.1
|
hitchselenium==0.5.1
|
||||||
hitchserve==0.4.8
|
hitchserve==0.4.9
|
||||||
hitchsmtp==0.2.1
|
hitchsmtp==0.2.1
|
||||||
hitchsystem==0.1.2
|
hitchsystem==0.1.3
|
||||||
hitchtest==0.9.6
|
hitchtest==0.9.8
|
||||||
humanize==0.5.1
|
humanize==0.5.1
|
||||||
ipython==4.1.1
|
ipython==4.1.2
|
||||||
ipython-genutils==0.1.0
|
ipython-genutils==0.1.0
|
||||||
Jinja2==2.8
|
Jinja2==2.8
|
||||||
jupyter-client==4.1.1
|
jupyter-client==4.1.1
|
||||||
|
@ -24,11 +24,11 @@ path.py==8.1.2
|
||||||
patool==1.12
|
patool==1.12
|
||||||
pexpect==4.0.1
|
pexpect==4.0.1
|
||||||
pickleshare==0.6
|
pickleshare==0.6
|
||||||
psutil==3.4.2
|
psutil==4.0.0
|
||||||
ptyprocess==0.5.1
|
ptyprocess==0.5.1
|
||||||
pykwalify==1.5.0
|
pykwalify==1.5.0
|
||||||
python-build==0.2.13
|
python-build==0.2.13
|
||||||
python-dateutil==2.4.2
|
python-dateutil==2.5.0
|
||||||
pyuv==1.2.0
|
pyuv==1.2.0
|
||||||
PyYAML==3.11
|
PyYAML==3.11
|
||||||
pyzmq==15.2.0
|
pyzmq==15.2.0
|
||||||
|
|
|
@ -96,7 +96,7 @@
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
||||||
|
|
||||||
<!-- Tether - a requirement for Bootstrap tooltips -->
|
<!-- Tether - a requirement for Bootstrap tooltips -->
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.1.1/js/tether.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js"></script>
|
||||||
|
|
||||||
<!-- Latest compiled and minified JavaScript -->
|
<!-- Latest compiled and minified JavaScript -->
|
||||||
<script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js"></script>
|
<script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js"></script>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user