Skip to content

Commit

Permalink
Update dev requirements, fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitlock committed Aug 26, 2018
1 parent 7359017 commit 8d89c4b
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 17 deletions.
1 change: 1 addition & 0 deletions multigtfs/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def _get_blank_value_19(field):
else:
return ''


if DJ_VERSION >= LooseVersion('1.9'):
get_blank_value = _get_blank_value_19
else:
Expand Down
1 change: 1 addition & 0 deletions multigtfs/migrations/0002_add_on_delete.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# flake8: noqa
from __future__ import unicode_literals

from django.db import migrations, models
Expand Down
1 change: 1 addition & 0 deletions multigtfs/migrations/0003_auto_20180826_2041.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-08-26 20:41
# flake8: noqa
from __future__ import unicode_literals

from django.db import migrations, models
Expand Down
32 changes: 16 additions & 16 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
coverage==4.0.3
django-nose==1.4.4
flake8==2.5.4
ipdb==0.9.0
ipython==4.1.2
coverage==4.5.1
django-nose==1.4.5
flake8==3.5.0
ipdb==0.11
ipython==5.8.0
nose==1.3.7
wheel==0.29.0
twine==1.9.1
wheel==0.31.1
twine==1.11.0

# tox
virtualenv==14.0.6
py==1.4.31
tox==2.3.1
virtualenv==16.0.0
py==1.5.4
tox==3.2.1

# Sphinx
MarkupSafe==0.23
Jinja2==2.8
Pygments==2.1.2
Sphinx==1.3.6
MarkupSafe==1.0
Jinja2==2.10
Pygments==2.2.0
Sphinx==1.7.7

# qa-all
check-manifest==0.35
pyroma==2.2
check-manifest==0.37
pyroma==2.4

# Google tools - not Python3 compat
# transitfeed==1.2.15
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django>=1.5
Django>=1.8
jsonfield==1.0.3
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ universal = 1
ignore =
*.pyc
*/__pycache__
.coverage

0 comments on commit 8d89c4b

Please sign in to comment.