File tree Expand file tree Collapse file tree 6 files changed +16
-5
lines changed Expand file tree Collapse file tree 6 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
====
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
+
3
14
### 1.7.3b2
4
15
5
16
* Added the ability to submit to a code competition. Some required arguments have been made optional.
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ def __repr__(self):
253
253
254
254
255
255
class KaggleApi :
256
- __version__ = '1.7.3b1 '
256
+ __version__ = '1.7.3 '
257
257
258
258
CONFIG_NAME_PROXY = 'proxy'
259
259
CONFIG_NAME_COMPETITION = 'competition'
Original file line number Diff line number Diff line change 9
9
# https://packaging.python.org/en/latest/guides/modernize-setup-py-project/
10
10
setup (
11
11
name = 'kaggle' ,
12
- version = '1.7.3b1 ' ,
12
+ version = '1.7.3 ' ,
13
13
description = 'Kaggle API' ,
14
14
long_description = (
15
15
'Official API for https://www.kaggle.com, accessible using a command line '
Original file line number Diff line number Diff line change 1
- __version__ = "1.7.3b1 "
1
+ __version__ = "1.7.3 "
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ def __repr__(self):
253
253
254
254
255
255
class KaggleApi :
256
- __version__ = '1.7.3b1 '
256
+ __version__ = '1.7.3 '
257
257
258
258
CONFIG_NAME_PROXY = 'proxy'
259
259
CONFIG_NAME_COMPETITION = 'competition'
Original file line number Diff line number Diff line change 9
9
# https://packaging.python.org/en/latest/guides/modernize-setup-py-project/
10
10
setup (
11
11
name = 'kaggle' ,
12
- version = '1.7.3b1 ' ,
12
+ version = '1.7.3 ' ,
13
13
description = 'Kaggle API' ,
14
14
long_description = (
15
15
'Official API for https://www.kaggle.com, accessible using a command line '
You can’t perform that action at this time.
0 commit comments