chore: bump version to 1.0.19

This commit is contained in:
Jason Jafari 2024-06-16 11:18:28 -04:00
parent 03529b6aee
commit 1ddae351a3
4 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import pickle
import dill as pickle
import json
import os

View File

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

View File

@ -19,6 +19,7 @@ cycler==0.12.1
debugpy==1.8.1
decorator==5.1.1
defusedxml==0.7.1
dill==0.3.8
docutils==0.21.2
et-xmlfile==1.1.0
executing==2.0.1

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='mlModelSaver',
version='1.0.18',
version='1.0.19',
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
@ -26,6 +26,7 @@ setup(
'scikit-learn>=1.5.0',
'statsmodels>=0.14.2',
'matplotlib>=3.9.0',
'dill>=0.3.8',
],
project_urls={ # Optional
'Documentation': 'https://github.com/smartdev-ca/mlModelSaver/blob/main/DOCS.md',