Skip to content

Commit 72da509

Browse files
committed
Release 0.3.1
1 parent 53bf88f commit 72da509

Some content is hidden

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

45 files changed

+498
-493
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
---------
33

4-
0.3.1 (unreleased)
4+
0.3.1 (29/08/2014)
55
++++++++++++++++++
66

77
* Improved ``PatternParserNPExtractor`` (less false positives in verb filter)

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@ include *.rst LICENSE *.txt
22
recursive-include textblob_de/ext *.py *.txt
33
recursive-include textblob_de/data *.xml
44
recursive-exclude textblob_de/ext __pycache__ *.pyc
5+
recursive-include tests *
6+
recursive-include docs *
7+
exclude docs/src/_build
8+
recursive-exclude docs __pycache__ *.pyc
9+
recursive-exclude tests __pycache__ *.pyc

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ clean-docs:
8282
rm -f docs/src/apidoc/modules.rst
8383

8484
clean-pyc:
85-
find . -maxdepth 4 -name '*.pyc' -exec rm -f {} +
86-
find . -maxdepth 4 -name '*.pyo' -exec rm -f {} +
87-
find . -maxdepth 4 -name '*~' -exec rm -f {} +
85+
find . -name '*.pyc' -exec rm -f {} +
86+
find . -name '*.pyo' -exec rm -f {} +
87+
find . -name '*~' -exec rm -f {} +
8888

8989
clean-test:
9090
rm -fr htmlcov/
@@ -151,13 +151,13 @@ docs: clean-docs prepare_dev develop
151151

152152
docs-pdf: docs
153153
make -C ./docs/src latexpdf
154-
$(O) ./docs/$(subst _,-,$(N)).pdf &
154+
#$(O) ./docs/$(subst _,-,$(N)).pdf &
155155

156-
publish: clean clean-logs docs
156+
publish: clean clean-logs docs-pdf
157157
$(P) setup.py publish
158158
$(O) https://pypi.python.org/pypi/$(subst _,-,$(N)) &
159159

160-
sdist: clean clean-logs docs
160+
sdist: clean clean-logs docs-pdf
161161
$(P) setup.py sdist
162162
ls -l dist
163163

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ textblob-de README
22
==================
33

44
[![textblob\_de - latest PyPI version](https://pypip.in/v/textblob-de/badge.png)](https://pypi.python.org/pypi/textblob-de/)
5-
[![Travis-CI](https://travis-ci.org/markuskiller/textblob-de.png?branch=dev)](https://travis-ci.org/markuskiller/textblob-de)
5+
[![Travis-CI](https://travis-ci.org/markuskiller/textblob-de.png?branch=master)](https://travis-ci.org/markuskiller/textblob-de)
66
[![Documentation Status](https://readthedocs.org/projects/textblob-de/badge/?version=latest)](http://textblob-de.readthedocs.org/en/latest/)
77
[![Number of PyPI downloads](https://pypip.in/d/textblob-de/badge.png)](https://pypi.python.org/pypi/textblob-de/)
88
[![Issues in In Progress](https://badge.waffle.io/markuskiller/textblob-de.png?label=In%20Progress&title=In%20Progress)](https://waffle.io/markuskiller/textblob-de)
99
[![LICENSE info](https://pypip.in/license/textblob-de/badge.png)](http://choosealicense.com/licenses/mit/)
1010

11-
German language support for [TextBlob](https://textblob.readthedocs.org/) by Steven Loria.
11+
German language support for [TextBlob](http://textblob.readthedocs.org/en/dev/) by Steven Loria.
1212

1313
This python package is being developed as a `TextBlob` **Language Extension**. See [Extension Guidelines](https://textblob.readthedocs.org/en/dev/contributing.html) for details.
1414

@@ -26,7 +26,7 @@ Features
2626
- Polarity detection (`PatternAnalyzer`) - Still **EXPERIMENTAL**, does not yet have information on subjectivity
2727
- **NEW:** Full `pattern.text.de` API support on Python3
2828
- Supports Python 2 and 3
29-
- See [working features overview](http://langui.ch/nlp/python/textblob-de-dev/) for details
29+
- See [working features overview](http://langui.ch/nlp/python/textblob-de/) for details
3030

3131
Installing/Upgrading
3232
--------------------

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ textblob-de README
77
:target: https://pypi.python.org/pypi/textblob-de/
88
:alt: textblob_de - latest PyPI version
99

10-
.. image:: https://travis-ci.org/markuskiller/textblob-de.png?branch=dev
10+
.. image:: https://travis-ci.org/markuskiller/textblob-de.png?branch=master
1111
:target: https://travis-ci.org/markuskiller/textblob-de
1212
:alt: Travis-CI
1313

@@ -27,7 +27,7 @@ textblob-de README
2727
:target: http://choosealicense.com/licenses/mit/
2828
:alt: LICENSE info
2929

30-
German language support for `TextBlob <https://textblob.readthedocs.org/>`_ by Steven Loria.
30+
German language support for `TextBlob <http://textblob.readthedocs.org/en/dev/>`_ by Steven Loria.
3131

3232
This python package is being developed as a ``TextBlob`` **Language Extension**.
3333
See `Extension Guidelines <https://textblob.readthedocs.org/en/dev/contributing.html>`_ for details.
@@ -47,7 +47,7 @@ Features
4747
* Polarity detection (``PatternAnalyzer``) - Still **EXPERIMENTAL**, does not yet have information on subjectivity
4848
* **NEW:** Full ``pattern.text.de`` API support on Python3
4949
* Supports Python 2 and 3
50-
* See `working features overview <http://langui.ch/nlp/python/textblob-de-dev/>`_ for details
50+
* See `working features overview <http://langui.ch/nlp/python/textblob-de/>`_ for details
5151

5252

5353
Installing/Upgrading
@@ -175,7 +175,7 @@ Access to ``pattern`` API in Python3
175175
Documentation and API Reference
176176
-------------------------------
177177
178-
* http://textblob-de.readthedocs.org/en/latest
178+
- http://textblob-de.readthedocs.org/en/latest
179179
180180
181181
Requirements

docs/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 6c5ab47d77332e7e0c472e14360cf07b
3+
config: dddfbefc169b2a20770e5f1087c7fc6a
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/html/_modules/index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="utf-8">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
99

10-
<title>Overview: module code &mdash; textblob-de 0.3.1a5 documentation</title>
10+
<title>Overview: module code &mdash; textblob-de 0.3.1 documentation</title>
1111

1212

1313

@@ -28,7 +28,7 @@
2828

2929

3030

31-
<link rel="top" title="textblob-de 0.3.1a5 documentation" href="../index.html"/>
31+
<link rel="top" title="textblob-de 0.3.1 documentation" href="../index.html"/>
3232

3333

3434
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
@@ -88,19 +88,19 @@
8888
</ul>
8989
<ul>
9090
<li class="toctree-l1"><a class="reference internal" href="../changelog.html">Changelog</a><ul>
91-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#unreleased">0.3.1 (unreleased)</a></li>
92-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id2">0.3.0 (14/08/2014)</a></li>
93-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id3">0.2.9 (14/08/2014)</a></li>
94-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id4">0.2.8 (14/08/2014)</a></li>
95-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id5">0.2.7 (13/08/2014)</a></li>
96-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id6">0.2.6 (04/08/2014)</a></li>
97-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id7">0.2.5 (04/08/2014)</a></li>
98-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id8">0.2.3 (26/07/2014)</a></li>
99-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id9">0.2.2 (22/07/2014)</a></li>
100-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id10">0.2.1 (20/07/2014)</a></li>
101-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id11">0.2.0 (18/07/2014)</a></li>
102-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id12">0.1.3 (09/07/2014)</a></li>
103-
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id13">0.1.0 - 0.1.2 (09/07/2014)</a></li>
91+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id2">0.3.1 (29/08/2014)</a></li>
92+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id3">0.3.0 (14/08/2014)</a></li>
93+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id4">0.2.9 (14/08/2014)</a></li>
94+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id5">0.2.8 (14/08/2014)</a></li>
95+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id6">0.2.7 (13/08/2014)</a></li>
96+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id7">0.2.6 (04/08/2014)</a></li>
97+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id8">0.2.5 (04/08/2014)</a></li>
98+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id9">0.2.3 (26/07/2014)</a></li>
99+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id10">0.2.2 (22/07/2014)</a></li>
100+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id11">0.2.1 (20/07/2014)</a></li>
101+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id12">0.2.0 (18/07/2014)</a></li>
102+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id13">0.1.3 (09/07/2014)</a></li>
103+
<li class="toctree-l2"><a class="reference internal" href="../changelog.html#id14">0.1.0 - 0.1.2 (09/07/2014)</a></li>
104104
</ul>
105105
</li>
106106
<li class="toctree-l1"><a class="reference internal" href="../authors.html">Credits</a><ul>
@@ -194,7 +194,7 @@ <h1>All modules for which code is available</h1>
194194
<script type="text/javascript">
195195
var DOCUMENTATION_OPTIONS = {
196196
URL_ROOT:'../',
197-
VERSION:'0.3.1a5',
197+
VERSION:'0.3.1',
198198
COLLAPSE_INDEX:false,
199199
FILE_SUFFIX:'.html',
200200
HAS_SOURCE: true

docs/html/_modules/textblob/classifiers.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="utf-8">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
99

10-
<title>textblob.classifiers &mdash; textblob-de 0.3.1a5 documentation</title>
10+
<title>textblob.classifiers &mdash; textblob-de 0.3.1 documentation</title>
1111

1212

1313

@@ -28,7 +28,7 @@
2828

2929

3030

31-
<link rel="top" title="textblob-de 0.3.1a5 documentation" href="../../index.html"/>
31+
<link rel="top" title="textblob-de 0.3.1 documentation" href="../../index.html"/>
3232
<link rel="up" title="Module code" href="../index.html"/>
3333

3434

@@ -89,19 +89,19 @@
8989
</ul>
9090
<ul>
9191
<li class="toctree-l1"><a class="reference internal" href="../../changelog.html">Changelog</a><ul>
92-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#unreleased">0.3.1 (unreleased)</a></li>
93-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id2">0.3.0 (14/08/2014)</a></li>
94-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id3">0.2.9 (14/08/2014)</a></li>
95-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id4">0.2.8 (14/08/2014)</a></li>
96-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id5">0.2.7 (13/08/2014)</a></li>
97-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id6">0.2.6 (04/08/2014)</a></li>
98-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id7">0.2.5 (04/08/2014)</a></li>
99-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id8">0.2.3 (26/07/2014)</a></li>
100-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id9">0.2.2 (22/07/2014)</a></li>
101-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id10">0.2.1 (20/07/2014)</a></li>
102-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id11">0.2.0 (18/07/2014)</a></li>
103-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id12">0.1.3 (09/07/2014)</a></li>
104-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id13">0.1.0 - 0.1.2 (09/07/2014)</a></li>
92+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id2">0.3.1 (29/08/2014)</a></li>
93+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id3">0.3.0 (14/08/2014)</a></li>
94+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id4">0.2.9 (14/08/2014)</a></li>
95+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id5">0.2.8 (14/08/2014)</a></li>
96+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id6">0.2.7 (13/08/2014)</a></li>
97+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id7">0.2.6 (04/08/2014)</a></li>
98+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id8">0.2.5 (04/08/2014)</a></li>
99+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id9">0.2.3 (26/07/2014)</a></li>
100+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id10">0.2.2 (22/07/2014)</a></li>
101+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id11">0.2.1 (20/07/2014)</a></li>
102+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id12">0.2.0 (18/07/2014)</a></li>
103+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id13">0.1.3 (09/07/2014)</a></li>
104+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id14">0.1.0 - 0.1.2 (09/07/2014)</a></li>
105105
</ul>
106106
</li>
107107
<li class="toctree-l1"><a class="reference internal" href="../../authors.html">Credits</a><ul>
@@ -668,7 +668,7 @@ <h1>Source code for textblob.classifiers</h1><div class="highlight"><pre>
668668
<script type="text/javascript">
669669
var DOCUMENTATION_OPTIONS = {
670670
URL_ROOT:'../../',
671-
VERSION:'0.3.1a5',
671+
VERSION:'0.3.1',
672672
COLLAPSE_INDEX:false,
673673
FILE_SUFFIX:'.html',
674674
HAS_SOURCE: true

docs/html/_modules/textblob/exceptions.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="utf-8">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
99

10-
<title>textblob.exceptions &mdash; textblob-de 0.3.1a5 documentation</title>
10+
<title>textblob.exceptions &mdash; textblob-de 0.3.1 documentation</title>
1111

1212

1313

@@ -28,7 +28,7 @@
2828

2929

3030

31-
<link rel="top" title="textblob-de 0.3.1a5 documentation" href="../../index.html"/>
31+
<link rel="top" title="textblob-de 0.3.1 documentation" href="../../index.html"/>
3232
<link rel="up" title="Module code" href="../index.html"/>
3333

3434

@@ -89,19 +89,19 @@
8989
</ul>
9090
<ul>
9191
<li class="toctree-l1"><a class="reference internal" href="../../changelog.html">Changelog</a><ul>
92-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#unreleased">0.3.1 (unreleased)</a></li>
93-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id2">0.3.0 (14/08/2014)</a></li>
94-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id3">0.2.9 (14/08/2014)</a></li>
95-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id4">0.2.8 (14/08/2014)</a></li>
96-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id5">0.2.7 (13/08/2014)</a></li>
97-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id6">0.2.6 (04/08/2014)</a></li>
98-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id7">0.2.5 (04/08/2014)</a></li>
99-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id8">0.2.3 (26/07/2014)</a></li>
100-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id9">0.2.2 (22/07/2014)</a></li>
101-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id10">0.2.1 (20/07/2014)</a></li>
102-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id11">0.2.0 (18/07/2014)</a></li>
103-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id12">0.1.3 (09/07/2014)</a></li>
104-
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id13">0.1.0 - 0.1.2 (09/07/2014)</a></li>
92+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id2">0.3.1 (29/08/2014)</a></li>
93+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id3">0.3.0 (14/08/2014)</a></li>
94+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id4">0.2.9 (14/08/2014)</a></li>
95+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id5">0.2.8 (14/08/2014)</a></li>
96+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id6">0.2.7 (13/08/2014)</a></li>
97+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id7">0.2.6 (04/08/2014)</a></li>
98+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id8">0.2.5 (04/08/2014)</a></li>
99+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id9">0.2.3 (26/07/2014)</a></li>
100+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id10">0.2.2 (22/07/2014)</a></li>
101+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id11">0.2.1 (20/07/2014)</a></li>
102+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id12">0.2.0 (18/07/2014)</a></li>
103+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id13">0.1.3 (09/07/2014)</a></li>
104+
<li class="toctree-l2"><a class="reference internal" href="../../changelog.html#id14">0.1.0 - 0.1.2 (09/07/2014)</a></li>
105105
</ul>
106106
</li>
107107
<li class="toctree-l1"><a class="reference internal" href="../../authors.html">Credits</a><ul>
@@ -215,7 +215,7 @@ <h1>Source code for textblob.exceptions</h1><div class="highlight"><pre>
215215
<script type="text/javascript">
216216
var DOCUMENTATION_OPTIONS = {
217217
URL_ROOT:'../../',
218-
VERSION:'0.3.1a5',
218+
VERSION:'0.3.1',
219219
COLLAPSE_INDEX:false,
220220
FILE_SUFFIX:'.html',
221221
HAS_SOURCE: true

0 commit comments

Comments
 (0)