File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
====
3
3
4
+ ### 1.5.9
5
+ Release date: 10/21/20
6
+ * Drop version restriction on urllib3 in setup.py.
7
+
4
8
### 1.5.8
5
9
Release date: 09/03/20
6
10
* No user-facing changes
Original file line number Diff line number Diff line change 82
82
83
83
84
84
class KaggleApi (KaggleApi ):
85
- __version__ = '1.5.8 '
85
+ __version__ = '1.5.9 '
86
86
87
87
CONFIG_NAME_PROXY = 'proxy'
88
88
CONFIG_NAME_COMPETITION = 'competition'
Original file line number Diff line number Diff line change 19
19
20
20
setup (
21
21
name = 'kaggle' ,
22
- version = '1.5.8 ' ,
22
+ version = '1.5.9 ' ,
23
23
description = 'Kaggle API' ,
24
24
long_description =
25
25
('Official API for https://www.kaggle.com, accessible using a command line '
31
31
keywords = ['Kaggle' , 'API' ],
32
32
entry_points = {'console_scripts' : ['kaggle = kaggle.cli:main' ]},
33
33
install_requires = [
34
- # Restriction that urllib3's version is less than 1.25 needed to avoid
35
- # requests dependency problem.
36
- 'urllib3 >= 1.21.1, < 1.25' ,
37
34
'six >= 1.10' ,
38
35
'certifi' ,
39
36
'python-dateutil' ,
40
37
'requests' ,
41
38
'tqdm' ,
42
39
'python-slugify' ,
43
40
'slugify' ,
41
+ 'urllib3' ,
44
42
],
45
43
packages = find_packages (),
46
44
license = 'Apache 2.0' )
You can’t perform that action at this time.
0 commit comments