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": [ "cSpell.words": [
"Jafari", "Jafari",
"Logit",
"statsmodels" "statsmodels"
] ]
} }

View File

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

View File

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

View File

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