File tree Expand file tree Collapse file tree 6 files changed +38
-6
lines changed
Expand file tree Collapse file tree 6 files changed +38
-6
lines changed Original file line number Diff line number Diff line change 1+ # .readthedocs.yml
2+ # Read the Docs configuration file
3+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+ # Required
6+ version : 2
7+
8+ # Build documentation in the docs/ directory with Sphinx
9+ sphinx :
10+ configuration : docs/conf.py
11+
12+ # Optionally set the version of Python and requirements required to build your docs
13+ python :
14+ version : 3.8
15+ install :
16+ - requirements : requirements/python-dev
Original file line number Diff line number Diff line change 11
22.. NOTES FOR CREATING A RELEASE:
33..
4- .. * bump the version number
4+ .. * bump the version number in scrubadub/__init__.py
55.. * update docs/changelog.rst
66.. * git push
7- .. * python setup.py sdist upload
87.. * create a release https://github.com/LeapBeyond/scrubadub/releases
8+ .. * This should trigger a github action to upload to pypi
9+ .. * ReadTheDocs.io should see any changes and also rebuild the docs
910
1011
1112 scrubadub
Original file line number Diff line number Diff line change @@ -11,6 +11,19 @@ latest changes in development for next release
1111
1212.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE!
1313
14+ 1.2.2
15+ -----
16+
17+ `LeapBeyond <http://leapbeyond.ai/ >`_ are now supporting scrubadub with maintanance and development.
18+
19+ * bug fixes:
20+
21+ * StopIteration no longer supported in recent python varions (`#41 `_ via `@roman-y-korolev `_)
22+
23+ * Fix test runner with python 3 (`#42 `_ via `@roman-y-korolev `_)
24+
25+ * Update documentation to reflect new repository location (`#49 `_)
26+
14271.2.1
1528-----
1629
@@ -112,4 +125,7 @@ latest changes in development for next release
112125.. _#29 : https://github.com/LeapBeyond/scrubadub/issues/29
113126.. _#31 : https://github.com/LeapBeyond/scrubadub/pull/31
114127.. _#32 : https://github.com/LeapBeyond/scrubadub/pull/32
128+ .. _#41 : https://github.com/LeapBeyond/scrubadub/pull/41
129+ .. _#42 : https://github.com/LeapBeyond/scrubadub/pull/42
115130.. _#43 : https://github.com/LeapBeyond/scrubadub/pull/43
131+ .. _#49 : https://github.com/LeapBeyond/scrubadub/pull/49
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ incorporating it into your python scripts like this:
4949
5050
5151 There are many ways to tailor the behavior of ``scrubadub `` using
52- :ref: `different `` Detector`` and `` Filth `` classes <under_the_hood>`. These
52+ :ref: `different Detector and Filth classes <under_the_hood >`. These
5353:ref: `advanced techniques <advanced_usage >` allow users to fine-tune the manner
5454in which ``scrubadub `` cleans dirty dirty text.
5555
Original file line number Diff line number Diff line change 1- # install everything in the python requirements too. this may be
2- # needed by readthedocs?!?!
1+ # install everything in the python requirements too.
32-r python
43
54# needed for tests/run.py script to read .travis.yml file
Original file line number Diff line number Diff line change 44from . import filth
55from . import detectors
66
7- __version__ = VERSION = "1.2.1 "
7+ __version__ = VERSION = "1.2.2 "
88
99
1010def clean (text , cls = None , ** kwargs ):
You can’t perform that action at this time.
0 commit comments