Skip to content

Commit

Permalink
requires.io
Browse files Browse the repository at this point in the history
* Add directive in requirements to tell requires.io that we're not
  ready for Django 2.0 yet
* Upgrade most python package requirements
* Add a badge to show whether we're up-to-date

Branch: requires.io
  • Loading branch information
dpoirier committed Mar 28, 2018
1 parent a0a7594 commit 41d389e
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 26 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% if False %}
.. image:: https://requires.io/github/caktus/django-project-template/requirements.svg?branch=master

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"gulp-util": "^3.0.0",
"immutable": "^3.7.6",
"isparta": "^4.0.0",
"jquery": "^2.1",
"jquery": "^3.0.0",
"jsdom": "^8.3.0",
"jsdom-global": "^1.7.0",
"less": "^2.5.3",
Expand Down
20 changes: 12 additions & 8 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
psycopg2==2.7.3
Pillow==2.9.0
Django==1.8.18
six==1.9.0
psycopg2==2.7.4
Pillow==5.0.0
# The comment on the next line tells requests.io to warn us if there's a newer
# version of Django within the given range, but not for versions outside that
# range. So if 1.11.12 gets released, we get warned. If 2.0.1 gets released,
# we don't.
Django==1.11.11 # rq.filter: >=1.11.11,<2.0
six==1.11.0

BeautifulSoup4==4.4.0
BeautifulSoup4==4.6.0

django-dotenv==1.3.0
django-dotenv==1.4.2
dealer==2.0.5

dj-database-url==0.4.2
whitenoise==3.3.0
dj-database-url==0.5.0
whitenoise==3.3.1
6 changes: 3 additions & 3 deletions requirements/deploy.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# These are the requirements for a virtualenv that can be used to run 'fabric' to do a deploy,
# *NOT* the requirements for a server running this Django site.
PyYAML==3.11
Fabric==1.10.2
PyYAML==3.12
Fabric==1.14.0
# Required by Fabric
paramiko==1.15.2
paramiko==2.4.1
pycrypto==2.6.1
ecdsa==0.13

Expand Down
28 changes: 14 additions & 14 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
-r base.txt
django-debug-toolbar==1.4
django-debug-toolbar==1.9.1
# Required by django-debug-toolbar
sqlparse==0.1.18
sqlparse==0.2.4

coverage==3.7.1
flake8==2.4.1
coverage==4.5.1
flake8==3.5.0
# Required by flake8
pyflakes==0.8.1
pep8==1.5.7
mccabe==0.3.1
pyflakes==1.6.0
pep8==1.7.1
mccabe==0.6.1

# For translation
transifex-client==0.11b3
transifex-client==0.13.1

requires.io

# For docs
Sphinx==1.3.6
sphinx-rtd-theme==0.1.9
alabaster==0.7.7
Babel==2.2.0
docutils==0.12
Pygments==2.1.3
Sphinx==1.7.2
sphinx-rtd-theme==0.2.4
alabaster==0.7.10
Babel==2.5.3
docutils==0.14
Pygments==2.2.0
snowballstemmer==1.2.1

0 comments on commit 41d389e

Please sign in to comment.