Skip to content

Commit fde9a3f

Browse files
authored
Release 1.6.15 (#610)
This is v1.6.15 of the public API. The change log has the details of the release.
1 parent 54b34ae commit fde9a3f

File tree

5 files changed

+27
-20
lines changed

5 files changed

+27
-20
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Changelog
22
====
3+
### 1.6.15
4+
* Support XDG base directory specification on Linux
5+
* Disable out-of-date API version warning with -W
6+
* Allow an array of strings in "source" when uploading .ipynb files (thanks to GitHub user mgallifrey for the contribution!)
7+
* Add triton framework for models
8+
* Update model licenses
9+
310
### 1.6.14
411

512
* No changes; release 1.6.13 isn't usable.

kaggle/api/kaggle_api_extended.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
#!/usr/bin/python
2-
#
3-
# Copyright 2024 Kaggle Inc
4-
#
5-
# Licensed under the Apache License, Version 2.0 (the "License");
6-
# you may not use this file except in compliance with the License.
7-
# You may obtain a copy of the License at
8-
#
9-
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
11-
# Unless required by applicable law or agreed to in writing, software
12-
# distributed under the License is distributed on an "AS IS" BASIS,
13-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
# See the License for the specific language governing permissions and
15-
# limitations under the License.
16-
1+
#!/usr/bin/python
2+
#
3+
# Copyright 2024 Kaggle Inc
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
1717
#!/usr/bin/python
1818
#
1919
# Copyright 2019 Kaggle Inc
@@ -272,7 +272,7 @@ def __repr__(self):
272272

273273

274274
class KaggleApi(KaggleApi):
275-
__version__ = '1.6.14'
275+
__version__ = '1.6.15'
276276

277277
CONFIG_NAME_PROXY = 'proxy'
278278
CONFIG_NAME_COMPETITION = 'competition'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# pyproject.toml instead of maintaining both flows.
77
setup(
88
name='kaggle',
9-
version='1.6.14',
9+
version='1.6.15',
1010
description='Kaggle API',
1111
long_description=
1212
('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.6.14"
1+
__version__ = "1.6.15"

src/kaggle/api/kaggle_api_extended.py

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

257257

258258
class KaggleApi(KaggleApi):
259-
__version__ = '1.6.14'
259+
__version__ = '1.6.15'
260260

261261
CONFIG_NAME_PROXY = 'proxy'
262262
CONFIG_NAME_COMPETITION = 'competition'

0 commit comments

Comments
 (0)