Skip to content

Commit

Permalink
1.6.3 (#543)
Browse files Browse the repository at this point in the history
* 1.6.3

* 1.6.3
  • Loading branch information
Philmod authored Jan 23, 2024
1 parent 69629f7 commit 8d52fdb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
====

### 1.6.3

Release date: 01/11/24
* Add "Flax" and "Pax" frameworks

### 1.6.2

Release date: 01/09/24
* Add "Other" framework

### 1.6.1
Release date: 01/08/24
* Fix dataset/model upload.
Expand Down
3 changes: 3 additions & 0 deletions KaggleSwagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1816,11 +1816,14 @@ definitions:
- tfJs
- pyTorch
- jax
- flax
- pax
- coral
- scikitLearn
- mxnet
- onnx
- keras
- other
overview:
type: string
description: The overview of the model instance (markdown)
Expand Down
2 changes: 1 addition & 1 deletion kaggle/api/kaggle_api_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def __repr__(self):


class KaggleApi(KaggleApi):
__version__ = '1.6.1'
__version__ = '1.6.3'

CONFIG_NAME_PROXY = 'proxy'
CONFIG_NAME_COMPETITION = 'competition'
Expand Down
2 changes: 1 addition & 1 deletion kaggle/models/model_new_instance_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def framework(self, framework):
"""
if framework is None:
raise ValueError("Invalid value for `framework`, must not be `None`") # noqa: E501
allowed_values = ["tensorFlow1", "tensorFlow2", "tfLite", "tfJs", "pyTorch", "jax", "coral", "scikitLearn", "mxnet", "onnx", "keras"] # noqa: E501
allowed_values = ["tensorFlow1", "tensorFlow2", "tfLite", "tfJs", "pyTorch", "jax", "flax", "pax", "coral", "scikitLearn", "mxnet", "onnx", "keras", "other"] # noqa: E501
if framework not in allowed_values:
raise ValueError(
"Invalid value for `framework` ({0}), must be one of {1}" # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='kaggle',
version='1.6.1',
version='1.6.3',
description='Kaggle API',
long_description=
('Official API for https://www.kaggle.com, accessible using a command line '
Expand Down

0 comments on commit 8d52fdb

Please sign in to comment.