Skip to content

Commit

Permalink
Bumped version number to 0.3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreassot10 committed Sep 28, 2021
1 parent 4d76b02 commit e674332
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ environment `text_venv`:
### Install from PyPI

1. Install `pxtextmining` and its PyPI dependencies:
- `pip3 install pxtextmining==0.3.2` (Linux & MacOS);
- `pip install pxtextmining==0.3.2` (Windows);
- `pip3 install pxtextmining==0.3.4` (Linux & MacOS);
- `pip install pxtextmining==0.3.4` (Windows);
1. We also need to install a couple of
[`spaCy`](https://github.com/explosion/spacy-models) models.

Expand All @@ -65,15 +65,15 @@ All steps in one go:
```
python3 -m venv text_venv
source text_venv/bin/activate
pip3 install pxtextmining==0.3.2
pip3 install pxtextmining==0.3.4
pip3 install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.3.1/en_core_web_sm-2.3.1.tar.gz
pip3 install https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.3.1/en_core_web_lg-2.3.1.tar.gz
```
1. **Windows**
```
python -m venv text_venv
text_venv\Scripts\activate
pip install pxtextmining==0.3.2
pip install pxtextmining==0.3.4
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.3.1/en_core_web_sm-2.3.1.tar.gz
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.3.1/en_core_web_lg-2.3.1.tar.gz
```
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Andreas D Soteriades'

# The full version, including alpha/beta/rc tags
release = '0.3.2'
release = '0.3.4'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="pxtextmining",
version="0.3.2",
version="0.3.4",
author="Andreas D Soteriades",
author_email="andreas.soteriades@nottshc.nhs.uk",
description="Text Classification of Patient Experience feedback",
Expand Down

0 comments on commit e674332

Please sign in to comment.