Skip to content

Commit 8d52fdb

Browse files
authored
1.6.3 (#543)
* 1.6.3 * 1.6.3
1 parent 69629f7 commit 8d52fdb

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

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

4+
### 1.6.3
5+
6+
Release date: 01/11/24
7+
* Add "Flax" and "Pax" frameworks
8+
9+
### 1.6.2
10+
11+
Release date: 01/09/24
12+
* Add "Other" framework
13+
414
### 1.6.1
515
Release date: 01/08/24
616
* Fix dataset/model upload.

KaggleSwagger.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,11 +1816,14 @@ definitions:
18161816
- tfJs
18171817
- pyTorch
18181818
- jax
1819+
- flax
1820+
- pax
18191821
- coral
18201822
- scikitLearn
18211823
- mxnet
18221824
- onnx
18231825
- keras
1826+
- other
18241827
overview:
18251828
type: string
18261829
description: The overview of the model instance (markdown)

kaggle/api/kaggle_api_extended.py

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

272272

273273
class KaggleApi(KaggleApi):
274-
__version__ = '1.6.1'
274+
__version__ = '1.6.3'
275275

276276
CONFIG_NAME_PROXY = 'proxy'
277277
CONFIG_NAME_COMPETITION = 'competition'

kaggle/models/model_new_instance_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def framework(self, framework):
159159
"""
160160
if framework is None:
161161
raise ValueError("Invalid value for `framework`, must not be `None`") # noqa: E501
162-
allowed_values = ["tensorFlow1", "tensorFlow2", "tfLite", "tfJs", "pyTorch", "jax", "coral", "scikitLearn", "mxnet", "onnx", "keras"] # noqa: E501
162+
allowed_values = ["tensorFlow1", "tensorFlow2", "tfLite", "tfJs", "pyTorch", "jax", "flax", "pax", "coral", "scikitLearn", "mxnet", "onnx", "keras", "other"] # noqa: E501
163163
if framework not in allowed_values:
164164
raise ValueError(
165165
"Invalid value for `framework` ({0}), must be one of {1}" # noqa: E501

setup.py

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

2020
setup(
2121
name='kaggle',
22-
version='1.6.1',
22+
version='1.6.3',
2323
description='Kaggle API',
2424
long_description=
2525
('Official API for https://www.kaggle.com, accessible using a command line '

0 commit comments

Comments
 (0)