blob: 6f484ca49dafa01e109bc1018352a382af230183 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001--- a/bch.egg-info/requires.txt
2+++ b/bch.egg-info/requires.txt
3@@ -3,4 +3,3 @@ click-log>=0.2.1
4 paho-mqtt>=1.0
5 pyserial>=3.0
6 PyYAML>=3.11
7-simplejson>=3.6.0
8--- a/bch/cli.py
9+++ b/bch/cli.py
10@@ -6,7 +6,7 @@ import sys
11 import logging
12 import click
13 import click_log
14-import simplejson as json
15+import json
16 from datetime import datetime
17 import paho.mqtt.client
18 from paho.mqtt.client import topic_matches_sub
19--- a/bch/mqtt_client.py
20+++ b/bch/mqtt_client.py
21@@ -1,7 +1,7 @@
22 import paho.mqtt.client
23 from paho.mqtt.client import topic_matches_sub
24 import logging
25-import simplejson as json
26+import json
27 import time
28
29
30--- a/setup.py
31+++ b/setup.py
32@@ -3,7 +3,7 @@
33
34 from setuptools import setup, find_packages
35
36-requirements = ['Click>=6.0', 'click-log>=0.2.1', 'paho-mqtt>=1.0', 'pyserial>=3.0', 'PyYAML>=3.11', 'simplejson>=3.6.0']
37+requirements = ['Click>=6.0', 'click-log>=0.2.1', 'paho-mqtt>=1.0', 'pyserial>=3.0', 'PyYAML>=3.11']
38
39 setup(
40 name='bch',