chore: bump version to 1.0.14
This commit is contained in:
parent
945aa1e2b9
commit
825cf18e99
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mlModelSaver",
|
"name": "mlModelSaver",
|
||||||
"version": "1.0.13",
|
"version": "1.0.14",
|
||||||
"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",
|
||||||
|
|||||||
@ -40,6 +40,7 @@ jaraco.context==5.3.0
|
|||||||
jaraco.functools==4.0.1
|
jaraco.functools==4.0.1
|
||||||
jedi==0.19.1
|
jedi==0.19.1
|
||||||
Jinja2==3.1.4
|
Jinja2==3.1.4
|
||||||
|
joblib==1.4.2
|
||||||
json5==0.9.25
|
json5==0.9.25
|
||||||
jsonpointer==3.0.0
|
jsonpointer==3.0.0
|
||||||
jsonschema==4.22.0
|
jsonschema==4.22.0
|
||||||
@ -64,7 +65,6 @@ matplotlib==3.9.0
|
|||||||
matplotlib-inline==0.1.7
|
matplotlib-inline==0.1.7
|
||||||
mdurl==0.1.2
|
mdurl==0.1.2
|
||||||
mistune==3.0.2
|
mistune==3.0.2
|
||||||
mlModelSaver==1.0.12
|
|
||||||
more-itertools==10.3.0
|
more-itertools==10.3.0
|
||||||
nbclient==0.10.0
|
nbclient==0.10.0
|
||||||
nbconvert==7.16.4
|
nbconvert==7.16.4
|
||||||
@ -112,6 +112,7 @@ rfc3986==2.0.0
|
|||||||
rfc3986-validator==0.1.1
|
rfc3986-validator==0.1.1
|
||||||
rich==13.7.1
|
rich==13.7.1
|
||||||
rpds-py==0.18.1
|
rpds-py==0.18.1
|
||||||
|
scikit-learn==1.5.0
|
||||||
scipy==1.13.1
|
scipy==1.13.1
|
||||||
Send2Trash==1.8.3
|
Send2Trash==1.8.3
|
||||||
setuptools==70.0.0
|
setuptools==70.0.0
|
||||||
@ -121,6 +122,7 @@ soupsieve==2.5
|
|||||||
stack-data==0.6.3
|
stack-data==0.6.3
|
||||||
statsmodels==0.14.2
|
statsmodels==0.14.2
|
||||||
terminado==0.18.1
|
terminado==0.18.1
|
||||||
|
threadpoolctl==3.5.0
|
||||||
tinycss2==1.3.0
|
tinycss2==1.3.0
|
||||||
tornado==6.4.1
|
tornado==6.4.1
|
||||||
traitlets==5.14.3
|
traitlets==5.14.3
|
||||||
|
|||||||
10
setup.py
10
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='mlModelSaver',
|
name='mlModelSaver',
|
||||||
version='1.0.13',
|
version='1.0.14',
|
||||||
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
|
||||||
@ -21,9 +21,11 @@ setup(
|
|||||||
],
|
],
|
||||||
keywords='machine learning model saving serving', # Keywords for your package
|
keywords='machine learning model saving serving', # Keywords for your package
|
||||||
install_requires=[
|
install_requires=[
|
||||||
# List of dependencies, e.g.:
|
'numpy>=1.26.4',
|
||||||
# 'numpy>=1.18.0',
|
'pandas>=2.2.2',
|
||||||
# 'scikit-learn>=0.22.0',
|
'scikit-learn>=1.5.0',
|
||||||
|
'statsmodels>=0.14.2',
|
||||||
|
'matplotlib>=3.9.0',
|
||||||
],
|
],
|
||||||
project_urls={ # Optional
|
project_urls={ # Optional
|
||||||
'Documentation': 'https://github.com/smartdev-ca/mlModelSaver/blob/main/DOCS.md',
|
'Documentation': 'https://github.com/smartdev-ca/mlModelSaver/blob/main/DOCS.md',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user