File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11=========
22Changelog
33=========
4+ Version 0.1.4
5+ ================
6+ * compatible with new version
47
58Version 0.1.3
69================
Original file line number Diff line number Diff line change 55import json
66import os
77import gzip
8- from collections import Iterable
8+ try :
9+ from collections import Iterable
10+ except :
11+ from collections .abc import Iterable
912import configparser
1013from ..utils .logger import get_logger
1114from ..utils .utils import get_chunk
Original file line number Diff line number Diff line change 11# -*- coding: UTF-8 -*-
22import os
33import copy
4- from collections import Iterable
4+
5+ try :
6+ from collections import Iterable
7+ except :
8+ from collections .abc import Iterable
59from decimal import Decimal
610
711
Original file line number Diff line number Diff line change 22# -*- coding: utf-8 -*-
33from setuptools import setup , find_packages
44
5- VERSION = "0.1.3 "
5+ VERSION = "0.1.4 "
66
77requirments = []
88
You can’t perform that action at this time.
0 commit comments