Skip to content

Commit

Permalink
Update some dependencies flagged by Requires.io II
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Alvin Villar committed Aug 26, 2017
1 parent 7b50f51 commit 31f64cf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions cadasta/organization/tests/test_serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_duplicate_organization_name(self):
with pytest.raises(ValidationError):
serializer.is_valid(raise_exception=True)
assert serializer.errors == {
'name': ["Organization with this name already exists."]
'name': ["organization with this name already exists."]
}

def test_update_with_duplicate_organization_name(self):
Expand All @@ -145,7 +145,7 @@ def test_update_with_duplicate_organization_name(self):
with pytest.raises(ValidationError):
serializer.is_valid(raise_exception=True)
assert serializer.errors == {
'name': ["Organization with this name already exists."]
'name': ["organization with this name already exists."]
}

def test_sanitize_stings(self):
Expand Down
10 changes: 5 additions & 5 deletions requirements/common.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Django==1.10.7 # rq.filter: <1.11.0
djangorestframework==3.3.3
djangorestframework==3.6.4
psycopg2==2.7.3
djoser==0.6.0
django-allauth==0.32.0
django-allauth==0.33.0
django-cors-headers==2.1.0
django-filter==1.0.4
django-crispy-forms==1.6.1
Expand Down Expand Up @@ -30,11 +30,11 @@ pytz==2017.2
shapely==1.5.17.post1
gdal==1.10.0 # rq.filter: <2.0.0
pylibmc==1.5.2
awscli==1.11.129
awscli==1.11.141
pandas==0.20.3
argon2-cffi==16.3.0
requests==2.18.3
requests==2.18.4
pyparsing==2.2.0
django-compressor==2.1.1
django-compressor==2.2
beautifulsoup4==4.6.0
gpxpy==1.1.2
4 changes: 2 additions & 2 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
pytest-django==3.1.2
factory-boy==2.9.2
pytest-cov==2.5.1
selenium==3.4.3
selenium==3.5.0
transifex-client==0.12.4
tox==2.7.0
flake8==3.4.1
django-debug-toolbar==1.8
django-extensions==1.8.1
django-extensions==1.9.0
django-skivvy==0.1.8
ipython==6.1.0
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ commands = python ./cadasta/manage.py makemigrations --check
[testenv:py35-flake8]
commands = ./runtests.py --lint
deps =
pytest==3.2.0
pytest==3.2.1
flake8==3.4.1

0 comments on commit 31f64cf

Please sign in to comment.