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

remove usage of external simplejson #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pylint>2.0.0,<3.0.0
typechecks >= 0.0.2,<1.0.0
simplejson>=3.0.0,<4.0.0
3 changes: 1 addition & 2 deletions serializable/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
Helper functions for deconstructing classes, functions, and user-defined
objects into serializable types.
"""
import json
from types import FunctionType, BuiltinFunctionType

import simplejson as json

from .primitive_types import return_primitive

def init_arg_names(obj):
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
],
install_requires=[
"typechecks>=0.0.2",
"simplejson",
],
long_description=readme,
long_description_content_type='text/markdown',
Expand Down
Loading