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 1
1
=========
2
2
Changelog
3
3
=========
4
+ Version 0.1.4
5
+ ================
6
+ * compatible with new version
4
7
5
8
Version 0.1.3
6
9
================
Original file line number Diff line number Diff line change 5
5
import json
6
6
import os
7
7
import gzip
8
- from collections import Iterable
8
+ try :
9
+ from collections import Iterable
10
+ except :
11
+ from collections .abc import Iterable
9
12
import configparser
10
13
from ..utils .logger import get_logger
11
14
from ..utils .utils import get_chunk
Original file line number Diff line number Diff line change 1
1
# -*- coding: UTF-8 -*-
2
2
import os
3
3
import copy
4
- from collections import Iterable
4
+
5
+ try :
6
+ from collections import Iterable
7
+ except :
8
+ from collections .abc import Iterable
5
9
from decimal import Decimal
6
10
7
11
Original file line number Diff line number Diff line change 2
2
# -*- coding: utf-8 -*-
3
3
from setuptools import setup , find_packages
4
4
5
- VERSION = "0.1.3 "
5
+ VERSION = "0.1.4 "
6
6
7
7
requirments = []
8
8
You can’t perform that action at this time.
0 commit comments