Skip to content

Commit 81bc045

Browse files
committed
Release v1.5.9
1 parent bc19055 commit 81bc045

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
====
33

4+
### 1.5.9
5+
Release date: 10/21/20
6+
* Drop version restriction on urllib3 in setup.py.
7+
48
### 1.5.8
59
Release date: 09/03/20
610
* No user-facing changes

kaggle/api/kaggle_api_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383

8484
class KaggleApi(KaggleApi):
85-
__version__ = '1.5.8'
85+
__version__ = '1.5.9'
8686

8787
CONFIG_NAME_PROXY = 'proxy'
8888
CONFIG_NAME_COMPETITION = 'competition'

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name='kaggle',
22-
version='1.5.8',
22+
version='1.5.9',
2323
description='Kaggle API',
2424
long_description=
2525
('Official API for https://www.kaggle.com, accessible using a command line '
@@ -31,16 +31,14 @@
3131
keywords=['Kaggle', 'API'],
3232
entry_points={'console_scripts': ['kaggle = kaggle.cli:main']},
3333
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',
3734
'six >= 1.10',
3835
'certifi',
3936
'python-dateutil',
4037
'requests',
4138
'tqdm',
4239
'python-slugify',
4340
'slugify',
41+
'urllib3',
4442
],
4543
packages=find_packages(),
4644
license='Apache 2.0')

0 commit comments

Comments
 (0)