Skip to content

Commit

Permalink
Fixup: Do not use simplejson
Browse files Browse the repository at this point in the history
  • Loading branch information
imranariffin committed Nov 27, 2023
1 parent 82145db commit d2ad6c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
"typer >= 0.4.0, < 0.5.0",
]
name = "aiotaskq"
version = "0.0.12"
version = "0.0.13"
readme = "README.md"
description = "A simple asynchronous task queue"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/aiotaskq/serde.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"""

import importlib
import json
import types
import typing as t

import jsonpickle
import simplejson as json

from .constants import Config
from .interfaces import ISerialization, SerializationType, T
Expand Down

0 comments on commit d2ad6c8

Please sign in to comment.