Skip to content

Commit

Permalink
Merge pull request #15 from edx/BOM-python3-compatibility
Browse files Browse the repository at this point in the history
Python3 compatibility:: Fixes json.load error
  • Loading branch information
Ayub-Khan authored Oct 16, 2019
2 parents eb5e22d + b011935 commit c02a3e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion recommender/recommender.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import codecs
import hashlib
import json
import simplejson as json
import lxml.etree as etree
import pkg_resources
import re
Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
webob
bleach==2.1.4
boto
fs
mako
boto
bleach==2.1.4
pycodestyle
simplejson
webob
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def package_data(pkg, root_list):

setup(
name='recommender-xblock',
version='1.4.4',
version='1.4.5',
description='recommender XBlock', # TODO: write a better description.
long_description=README,
author='edX',
Expand Down

0 comments on commit c02a3e9

Please sign in to comment.