File tree 3 files changed +13
-5
lines changed 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
=========
2
2
Changelog
3
3
=========
4
- **Future Release **
5
- * Remove tensorflow and tensorhub as core requirements but instead
6
- can be installed with ``pip install nlp_primitives[complete]" ``
4
+ **v1.0.0 ** Aug 12, 2020
5
+ * Changes
6
+ * Remove tensorflow and tensorhub as core requirements, but they
7
+ can be installed with ``pip install nlp_primitives[complete] ``. The
8
+ ``UniversalSentenceEncoder `` primitive requires the ``nlp_primitives[complete] ``
9
+ install but all other primitives work with the standard install. (:pr: `24 `)
10
+ * Testing Changes
11
+ * Update CircleCI to perform complete install and use matrix jobs (:pr: `24 `)
12
+
13
+ Thanks to the following people for contributing to this release:
14
+ :user: `thehomebrewnerd `
7
15
8
16
**v0.3.1 **
9
17
* Fix installation error related to scipy version
Original file line number Diff line number Diff line change 1
1
# flake8: noqa
2
- __version__ = '0.3.1 '
2
+ __version__ = '1.0.0 '
3
3
from .diversity_score import DiversityScore
4
4
from .lsa import LSA
5
5
from .mean_characters_per_word import MeanCharactersPerWord
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = 'nlp_primitives' ,
15
- version = '0.3.1 ' ,
15
+ version = '1.0.0 ' ,
16
16
author = 'Feature Labs, Inc.' ,
17
17
author_email = 'support@featurelabs.com' ,
18
18
license = 'BSD 3-clause' ,
You can’t perform that action at this time.
0 commit comments