From d2ad6c8743033fac603868f546eac0a42b7d7493 Mon Sep 17 00:00:00 2001 From: Imran Ariffin Date: Sun, 26 Nov 2023 22:41:39 -0500 Subject: [PATCH] Fixup: Do not use simplejson --- pyproject.toml | 2 +- src/aiotaskq/serde.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 721d4f6..f6fbbc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ diff --git a/src/aiotaskq/serde.py b/src/aiotaskq/serde.py index 7921d19..5782325 100644 --- a/src/aiotaskq/serde.py +++ b/src/aiotaskq/serde.py @@ -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