Skip to content

Commit

Permalink
setup: simplejson instead of json
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Susik <[email protected]>
  • Loading branch information
Mateusz Susik committed May 13, 2015
1 parent a907942 commit 6b82d5a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions orcid/orcid.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
from jinja2 import FileSystemLoader, Environment

import codecs
import json
import simplejson as json
import os
import requests

SEARCH_VERSION = "/v1.2"
VERSION = "/v2.0_rc1"

__version__ = "0.4.0"
__version__ = "0.4.1"


class PublicAPI(object):
Expand Down
2 changes: 1 addition & 1 deletion orcid/testsuite/test_orcid.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for ORCID library."""

import json
import simplejson as json
import pytest
import re

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def run_tests(self):
],
cmdclass={'test': PyTest},
description='A python wrapper over ORCID API',
install_requires=['jinja2', 'requests'],
install_requires=['jinja2', 'requests', 'simplejson'],
keywords=['orcid', 'api', 'wrapper'],
license='BSD',
long_description=open('README.rst', 'r').read(),
Expand All @@ -45,5 +45,5 @@ def run_tests(self):
packages=['orcid'],
tests_require=['pytest', 'coverage', 'httpretty'],
url='https://github.com/MSusik/python-orcid',
version='0.4.0'
version='0.4.1'
)

0 comments on commit 6b82d5a

Please sign in to comment.