Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to using ujson, remove simplejson from requirements #56

Merged
merged 1 commit into from
Jan 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ PyYAML==3.11
redis==2.10.5
requests==2.10.0
Shapely==1.4.3
simplejson==3.6.4
six==1.10.0
StreetNames==0.1.5
ujson==1.3.5
Werkzeug==0.9.6
wsgiref==0.1.2
zope.dottedname==4.1.0
Expand Down
2 changes: 1 addition & 1 deletion tileserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from tilequeue.metatile import make_single_metatile, extract_metatile
from werkzeug.wrappers import Request
from werkzeug.wrappers import Response
import json
import ujson as json
import psycopg2
import random
import shapely.geometry
Expand Down