chore: bump version to 1.0.17

This commit is contained in:
Jason Jafari 2024-06-16 02:34:15 -04:00
parent 88cd2d9fd1
commit 71c996c56f
4 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{
"cSpell.words": [
"Jafari",
"Logit",
"statsmodels"
]
}

View File

@ -36,6 +36,9 @@ def check_file_exists(file_path):
supportedModels = {
"sm.OLS": {
"supported": True
},
"sm.Logit": {
"supported": True
}
}
@ -48,6 +51,9 @@ supportedDataType = {
},
"binary":{
"supported": True
},
"probebility":{
"supported": True
}
}

View File

@ -1,6 +1,6 @@
{
"name": "mlModelSaver",
"version": "1.0.16",
"version": "1.0.17",
"description": "Make life easier for save and serving ml models",
"main": "index.js",
"repository": "git@github.com:smartdev-ca/mlModelSaver.git",

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='mlModelSaver',
version='1.0.16',
version='1.0.17',
packages=find_packages(),
description='Make life easier for saving and serving ML models',
long_description=open('DOCS.md').read(), # Assumes you have a README.md file