Skip to content

Commit 330b4e1

Browse files
authored
Merge pull request #71 from LexPredict/2.3.0
2.3.0
2 parents bd49b3f + 180ab05 commit 330b4e1

File tree

383 files changed

+17117
-1464
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

383 files changed

+17117
-1464
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
data/samples/
66
libs/tika/
77
libs/stanford_nlp/
8-
notebooks/
8+
99
bin/
1010

1111
# Byte-compiled / optimized / DLL files

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
include README.md
22
include README.rst
33
include index.rst
4-
include python-requirements.txt
4+
include Pipfile
5+
include Pipfile.lock
56
recursive-include lexnlp *.pickle
67
recursive-include lexnlp/extract/en/addresses *.json *.txt *.xml
78
recursive-include lexnlp *.csv

Pipfile

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
beautifulsoup4 = "*"
8+
cloudpickle = "*"
9+
Cython = "*"
10+
dateparser = "*"
11+
elasticsearch = "*"
12+
gensim = "==4.1.2"
13+
importlib-metadata = "*"
14+
joblib = "*"
15+
lxml = "*"
16+
nltk = "*"
17+
num2words = "*"
18+
pandas = "*"
19+
psutil = "*"
20+
pycountry = "*"
21+
python-dateutil = "*"
22+
regex = "*"
23+
reporters-db = "*"
24+
requests = "*"
25+
scikit-learn = "==0.24"
26+
scipy = "*"
27+
tqdm = "*"
28+
unidecode = "*"
29+
us = "*"
30+
zahlwort2num = "*"
31+
numpy = "*"
32+
33+
[dev-packages]
34+
coverage = "*"
35+
memory-profiler = "*"
36+
nose = "*"
37+
pylint = "*"
38+
pytest = "*"
39+
sphinx = "*"
40+
41+
[requires]
42+
python_version = "3.8"

Pipfile.lock

Lines changed: 1235 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ by contacting ContraxSuite Licensing at <<license@contraxsuite.com>>.
4343

4444
## Requirements
4545
* Python 3.8
46-
* see python-requirements.txt file for full information
46+
* pipenv
4747

4848
## Releases
49-
* 2.2.1.0: August 10, Twenty fifth scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.2.1.0)
49+
* 2.3.0: November 30, 2022 - Twenty sixth scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.3.0)
50+
* 2.2.1.0: August 10, 2022 - Twenty fifth scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.2.1.0)
5051
* 2.2.0: July 7, 2022 - Twenty fourth scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.2.0)
5152
* 2.1.0: September 16, 2021 - Twenty third scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0)
5253
* 2.0.0: May 10, 2021 - Twenty second scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0)

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,13 @@ Requirements
7676
------------
7777

7878
- Python 3.8
79-
- see python-requirements.txt file for full information
79+
- pipenv
8080

8181
Releases
8282
--------
8383

84+
- 2.3.0: November 30, 2022 - Twenty sixth scheduled public release;
85+
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.3.0>`__
8486
- 2.2.1.0: August 10, 2022 - Twenty fifth scheduled public release;
8587
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.2.1.0>`__
8688
- 2.2.0: July 7, 2022 - Twenty fourth scheduled public release;

documentation/docs/source/changes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Changelog
55
============
66

7+
2.3.0 - November 30, 2022
8+
----------------
9+
* Updated Python version and upgraded all dependencies.
10+
* Started using pipenv
11+
712
2.2.1.0 - August 10, 2022
813
----------------
914
* Improved LexNLP handling for companies for the "EN" locale.

documentation/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = 'ContraxSuite, LLC'
2626

2727
# The short X.Y version
28-
version = '2.2.1.0'
28+
version = '2.3.0'
2929
# The full version, including alpha/beta/rc tags
30-
release = '2.2.1.0'
30+
release = '2.3.0'
3131

3232
# -- General configuration ---------------------------------------------------
3333

documentation/docs/source/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ License
77
AGPL License
88
----------------
99
LexNLP is available by default under the terms of the GNU Affero General Public License v3.0.
10-
https://github.com/LexPredict/lexpredict-lexnlp/blob/2.2.1.0/LICENSE
10+
https://github.com/LexPredict/lexpredict-lexnlp/blob/2.3.0/LICENSE
1111

1212

1313
License Release

index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Requirements
7676
------------
7777

7878
- Python 3.8
79-
- see python-requirements.txt file for full information
79+
- pipenv
8080

8181
Releases
8282
--------

0 commit comments

Comments
 (0)