Skip to content

Commit 8f972fc

Browse files
authored
Prepare for release 1.7.3 (#710)
1 parent 65bceb6 commit 8f972fc

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Changelog
22
====
3+
### 1.7.3
4+
5+
There was an error in versioning. We went from 1.6.17 to 1.7.3.
6+
7+
* Added the ability to submit to a code competition. Some required arguments have been made optional.
8+
* Added a `--timeout` option to `kaggle kernels push` to limit the run-time to the specified number of seconds.
9+
* Removed Swagger. Projects that use `kaggle/api/kaggle_api.py` may be affected. That file is deprecated and will be
10+
removed. Most of its functions still work, but those that involve uploading files no longer work.
11+
The command-line tool uses a higher-level abstraction for uploading, and client code needs
12+
to be converted to use that.
13+
314
### 1.7.3b2
415

516
* Added the ability to submit to a code competition. Some required arguments have been made optional.

kaggle/api/kaggle_api_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def __repr__(self):
253253

254254

255255
class KaggleApi:
256-
__version__ = '1.7.3b1'
256+
__version__ = '1.7.3'
257257

258258
CONFIG_NAME_PROXY = 'proxy'
259259
CONFIG_NAME_COMPETITION = 'competition'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# https://packaging.python.org/en/latest/guides/modernize-setup-py-project/
1010
setup(
1111
name='kaggle',
12-
version='1.7.3b1',
12+
version='1.7.3',
1313
description='Kaggle API',
1414
long_description=(
1515
'Official API for https://www.kaggle.com, accessible using a command line '

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.7.3b1"
1+
__version__ = "1.7.3"

src/kaggle/api/kaggle_api_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def __repr__(self):
253253

254254

255255
class KaggleApi:
256-
__version__ = '1.7.3b1'
256+
__version__ = '1.7.3'
257257

258258
CONFIG_NAME_PROXY = 'proxy'
259259
CONFIG_NAME_COMPETITION = 'competition'

src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# https://packaging.python.org/en/latest/guides/modernize-setup-py-project/
1010
setup(
1111
name='kaggle',
12-
version='1.7.3b1',
12+
version='1.7.3',
1313
description='Kaggle API',
1414
long_description=(
1515
'Official API for https://www.kaggle.com, accessible using a command line '

0 commit comments

Comments
 (0)