Skip to content

Commit 3ea8842

Browse files
authored
Merge pull request #15 from SamEdwardes:update-docs-pypi
Published new build to pypi with corrected README. Also removed scripts directory and replaced with a Makefile.
2 parents 51c4a94 + ea50083 commit 3ea8842

File tree

4 files changed

+12
-15
lines changed

4 files changed

+12
-15
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
build_docs :
2+
# inspired by https://github.com/pytorch/botorch/blob/master/scripts/build_docs.sh
3+
# usage: poetry run bash scripts/build_docs.sh
4+
jupyter nbconvert --to markdown --execute README.ipynb
5+
jupyter nbconvert --to markdown --execute website/docs/getting_started.ipynb
6+
jupyter nbconvert --to markdown --execute website/docs/example.ipynb
7+
8+
publish_pypi :
9+
poetry version patch
10+
poetry build
11+
poetry publish

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "spacytextblob"
3-
version = "3.0"
3+
version = "3.0.1"
44
description = "A TextBlob sentiment analysis pipeline compponent for spaCy"
55
authors = ["SamEdwardes <edwardes.s@gmail.com>"]
66
license = "MIT"

scripts/build_docs.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

scripts/publish_pypi.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)