chore: bump version to 1.0.14

This commit is contained in:
Jason Jafari 2024-06-15 19:30:46 -04:00
parent 945aa1e2b9
commit 825cf18e99
3 changed files with 10 additions and 6 deletions

View File

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

View File

@ -40,6 +40,7 @@ jaraco.context==5.3.0
jaraco.functools==4.0.1
jedi==0.19.1
Jinja2==3.1.4
joblib==1.4.2
json5==0.9.25
jsonpointer==3.0.0
jsonschema==4.22.0
@ -64,7 +65,6 @@ matplotlib==3.9.0
matplotlib-inline==0.1.7
mdurl==0.1.2
mistune==3.0.2
mlModelSaver==1.0.12
more-itertools==10.3.0
nbclient==0.10.0
nbconvert==7.16.4
@ -112,6 +112,7 @@ rfc3986==2.0.0
rfc3986-validator==0.1.1
rich==13.7.1
rpds-py==0.18.1
scikit-learn==1.5.0
scipy==1.13.1
Send2Trash==1.8.3
setuptools==70.0.0
@ -121,6 +122,7 @@ soupsieve==2.5
stack-data==0.6.3
statsmodels==0.14.2
terminado==0.18.1
threadpoolctl==3.5.0
tinycss2==1.3.0
tornado==6.4.1
traitlets==5.14.3

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='mlModelSaver',
version='1.0.13',
version='1.0.14',
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
@ -21,9 +21,11 @@ setup(
],
keywords='machine learning model saving serving', # Keywords for your package
install_requires=[
# List of dependencies, e.g.:
# 'numpy>=1.18.0',
# 'scikit-learn>=0.22.0',
'numpy>=1.26.4',
'pandas>=2.2.2',
'scikit-learn>=1.5.0',
'statsmodels>=0.14.2',
'matplotlib>=3.9.0',
],
project_urls={ # Optional
'Documentation': 'https://github.com/smartdev-ca/mlModelSaver/blob/main/DOCS.md',