Skip to content

Commit 87cc2ac

Browse files
committed
updated version management
1 parent 17b9ca0 commit 87cc2ac

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Below is as training JSON sample containing the pattern and name of the intent
2020
"intent": "about"
2121
},
2222
{
23-
"text": "what is smartloop_core",
23+
"text": "what is smartloop",
2424
"intent": "about"
2525
},
2626
{

requirements.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ joblib~=1.1.0
66
nltk~=3.7
77
PyYAML~=6.0
88
scikit-learn~=1.2.2
9-
setuptools~=62.5.0
9+
setuptools~=62.5.0
10+
keras~=2.12.0
11+
numpy~=1.23.5
12+
h5py==3.9.0

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import sys
21
from setuptools import setup, find_packages
2+
from smartloop import __version__
33
from pathlib import Path
44

55
this_directory = Path(__file__).parent
@@ -10,12 +10,13 @@
1010
'joblib==1.1.1',
1111
'PyYAML==6.0',
1212
'scikit-learn~=1.2.2',
13+
'numpy~=1.23.5'
1314
]
1415

1516
setup(
1617
name='smartloop',
1718
description='Natural language processing framework for text processing',
18-
version='1.0.6',
19+
version=__version__,
1920
author_email='[email protected]',
2021
author='Smartloop Inc.',
2122
url='https://github.com/SmartloopAI/sl-core',

smartloop/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import nltk
12
import smartloop.version
23

34
__version__ = smartloop.version.__version__

smartloop/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.6'
1+
__version__ = '1.0.7'

0 commit comments

Comments
 (0)