Skip to content

Commit 8d89c4b

Browse files
committed
Update dev requirements, fix linting
1 parent 7359017 commit 8d89c4b

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

multigtfs/compat.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def _get_blank_value_19(field):
3131
else:
3232
return ''
3333

34+
3435
if DJ_VERSION >= LooseVersion('1.9'):
3536
get_blank_value = _get_blank_value_19
3637
else:

multigtfs/migrations/0002_add_on_delete.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# flake8: noqa
23
from __future__ import unicode_literals
34

45
from django.db import migrations, models

multigtfs/migrations/0003_auto_20180826_2041.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22
# Generated by Django 1.11.15 on 2018-08-26 20:41
3+
# flake8: noqa
34
from __future__ import unicode_literals
45

56
from django.db import migrations, models

requirements.dev.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
coverage==4.0.3
2-
django-nose==1.4.4
3-
flake8==2.5.4
4-
ipdb==0.9.0
5-
ipython==4.1.2
1+
coverage==4.5.1
2+
django-nose==1.4.5
3+
flake8==3.5.0
4+
ipdb==0.11
5+
ipython==5.8.0
66
nose==1.3.7
7-
wheel==0.29.0
8-
twine==1.9.1
7+
wheel==0.31.1
8+
twine==1.11.0
99

1010
# tox
11-
virtualenv==14.0.6
12-
py==1.4.31
13-
tox==2.3.1
11+
virtualenv==16.0.0
12+
py==1.5.4
13+
tox==3.2.1
1414

1515
# Sphinx
16-
MarkupSafe==0.23
17-
Jinja2==2.8
18-
Pygments==2.1.2
19-
Sphinx==1.3.6
16+
MarkupSafe==1.0
17+
Jinja2==2.10
18+
Pygments==2.2.0
19+
Sphinx==1.7.7
2020

2121
# qa-all
22-
check-manifest==0.35
23-
pyroma==2.2
22+
check-manifest==0.37
23+
pyroma==2.4
2424

2525
# Google tools - not Python3 compat
2626
# transitfeed==1.2.15

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django>=1.5
1+
Django>=1.8
22
jsonfield==1.0.3

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ universal = 1
55
ignore =
66
*.pyc
77
*/__pycache__
8+
.coverage

0 commit comments

Comments
 (0)