Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
laowantong committed Oct 4, 2020
1 parent 467c344 commit b793c39
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ If you use Jupyter notebook/lab, you've also just installed a so-called magic co
%load_ext paroxython
```

This should print `"paroxython 0.5.2 loaded."`. Run it on a cell of Python code:
This should print `"paroxython 0.5.3 loaded."`. Run it on a cell of Python code:

```python
%%paroxython # Lines
Expand Down
2 changes: 1 addition & 1 deletion docs/cli_collect.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2 id="options">Options</h2>
-t --taxonomy=PATH The path of a TSV file mapping labels onto taxa. If not
specified, use the &quot;taxonomy.tsv&quot; present in DIRECTORY's
parent. If absent, use the included default taxonomy:
&lt;https://github.com/laowantong/paroxython/blob/0.5.2/paroxython/resources/taxonomy.tsv&gt;
&lt;https://github.com/laowantong/paroxython/blob/0.5.3/paroxython/resources/taxonomy.tsv&gt;
</pre>
<details class="source">
<summary>
Expand Down
2 changes: 1 addition & 1 deletion docs/cli_tag.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h2 id="options">Options</h2>
-l --labels Output the labels instead of the taxa.
-t --taxonomy=PATH The path of a TSV file mapping labels onto taxa.
If not specified, use the included default taxonomy:
&lt;https://github.com/laowantong/paroxython/blob/0.5.2/paroxython/resources/taxonomy.tsv&gt;
&lt;https://github.com/laowantong/paroxython/blob/0.5.3/paroxython/resources/taxonomy.tsv&gt;
</pre>
<details class="source">
<summary>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ <h3 id="ipython-magic-command">IPython magic command</h3>
<p>If you use Jupyter notebook/lab, you've also just installed a so-called magic command. Load it like this:</p>
<pre><code class="python">%load_ext paroxython
</code></pre>
<p>This should print <code>"paroxython 0.5.2 loaded."</code>. Run it on a cell of Python code:</p>
<p>This should print <code>"paroxython 0.5.3 loaded."</code>. Run it on a cell of Python code:</p>
<pre><code class="python">%%paroxython # Lines
def fibonacci(n): # 2
result = [] # 3
Expand Down
2 changes: 1 addition & 1 deletion paroxython/cli_collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
-t --taxonomy=PATH The path of a TSV file mapping labels onto taxa. If not
specified, use the "taxonomy.tsv" present in DIRECTORY's
parent. If absent, use the included default taxonomy:
https://github.com/laowantong/paroxython/blob/0.5.2/paroxython/resources/taxonomy.tsv
https://github.com/laowantong/paroxython/blob/0.5.3/paroxython/resources/taxonomy.tsv
```
"""

Expand Down
2 changes: 1 addition & 1 deletion paroxython/cli_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
-l --labels Output the labels instead of the taxa.
-t --taxonomy=PATH The path of a TSV file mapping labels onto taxa.
If not specified, use the included default taxonomy:
https://github.com/laowantong/paroxython/blob/0.5.2/paroxython/resources/taxonomy.tsv
https://github.com/laowantong/paroxython/blob/0.5.3/paroxython/resources/taxonomy.tsv
```
"""

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "paroxython"
version = "0.5.2"
version = "0.5.3"
description = "Search Python code for algorithmic features"
authors = ["Aristide Grange"]
license = "MIT"
Expand Down Expand Up @@ -34,15 +34,15 @@ classifiers = [
[tool.poetry.dependencies]
docopt = "^0.6.2"
python = "^3.6.1"
regex = "^2020.7.14"
regex = "2020.7.14"
typed-ast = "^1.4.1"
typing-extensions = "^3.7.4.3"

[tool.poetry.dev-dependencies]
mypy = "^0.782"
pdoc3 = "^0.9.1"
pre-commit = "^2.6.0"
pytest = "^6.0.1"
pytest = "^6.1.1"
sqlparse = "^0.3.1"

[build-system]
Expand Down

0 comments on commit b793c39

Please sign in to comment.