bring back simplejson

This commit is contained in:
Saleh Mir
2022-02-22 15:19:54 +01:00
parent 6e5daa90ff
commit 1a3f76a38e
5 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import numpy as np import numpy as np
import jimplejson as json import simplejson as json
class NpEncoder(json.JSONEncoder): class NpEncoder(json.JSONEncoder):

View File

@@ -1,6 +1,6 @@
import aioredis import aioredis
import redis as sync_redis_lib import redis as sync_redis_lib
import jimplejson as json import simplejson as json
import asyncio import asyncio
import jesse.helpers as jh import jesse.helpers as jh
from jesse.libs.custom_json import NpEncoder from jesse.libs.custom_json import NpEncoder

View File

@@ -1 +1 @@
__version__ = '0.33.2' __version__ = '0.33.3'

View File

@@ -20,7 +20,7 @@ TA-Lib==0.4.24
tabulate==0.8.9 tabulate==0.8.9
timeloop==1.0.2 timeloop==1.0.2
websocket-client==1.2.3 websocket-client==1.2.3
jimplejson==1.0.0 simplejson==3.16.0
aioredis==1.3.1 aioredis==1.3.1
redis==4.1.4 redis==4.1.4
fastapi==0.74.0 fastapi==0.74.0

View File

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
# also change in version.py # also change in version.py
VERSION = '0.33.2' VERSION = '0.33.3'
DESCRIPTION = "A trading framework for cryptocurrencies" DESCRIPTION = "A trading framework for cryptocurrencies"
with open("requirements.txt", "r", encoding="utf-8") as f: with open("requirements.txt", "r", encoding="utf-8") as f:
REQUIRED_PACKAGES = f.read().splitlines() REQUIRED_PACKAGES = f.read().splitlines()