Skip to content

Commit 27184b4

Browse files
committed
bump version
move and document
1 parent ad02a5c commit 27184b4

File tree

11 files changed

+11
-17
lines changed

11 files changed

+11
-17
lines changed

coverage.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ wvpy/util.py 307 7 98%
2525
TOTAL 310 7 98%
2626

2727

28-
============================== 14 passed in 7.09s ==============================
28+
============================== 14 passed in 7.22s ==============================

pkg/tests/example_cross_plan.ipynb renamed to examples/example_cross_plan.ipynb

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,11 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 1,
5+
"execution_count": null,
66
"metadata": {
77
"collapsed": true
88
},
9-
"outputs": [
10-
{
11-
"data": {
12-
"text/plain": "[{'train': [0, 2, 4, 5, 7, 9], 'test': [1, 3, 6, 8]},\n {'train': [1, 2, 3, 4, 5, 6, 8], 'test': [0, 7, 9]},\n {'train': [0, 1, 3, 6, 7, 8, 9], 'test': [2, 4, 5]}]"
13-
},
14-
"execution_count": 1,
15-
"metadata": {},
16-
"output_type": "execute_result"
17-
}
18-
],
9+
"outputs": [],
1910
"source": [
2011
"import wvpy.util\n",
2112
"\n",

pkg/build/lib/wvpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__docformat__ = "restructuredtext"
2-
__version__ = "0.2.8"
2+
__version__ = "0.2.9"
33

44
__doc__ = """
55
This<https://github.com/WinVector/wvpy> is a package of example files for teaching data science.

pkg/dist/wvpy-0.2.8.tar.gz

-9.77 KB
Binary file not shown.
Binary file not shown.

pkg/dist/wvpy-0.2.9.tar.gz

9.76 KB
Binary file not shown.

pkg/docs/wvpy.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ <h1 class="modulename">
5454
<details>
5555
<summary>View Source</summary>
5656
<div class="codehilite"><pre><span></span><span class="n">__docformat__</span> <span class="o">=</span> <span class="s2">&quot;restructuredtext&quot;</span>
57-
<span class="n">__version__</span> <span class="o">=</span> <span class="s2">&quot;0.2.8&quot;</span>
57+
<span class="n">__version__</span> <span class="o">=</span> <span class="s2">&quot;0.2.9&quot;</span>
5858

5959
<span class="vm">__doc__</span> <span class="o">=</span> <span class="s2">&quot;&quot;&quot;</span>
6060
<span class="s2">This&lt;https://github.com/WinVector/wvpy&gt; is a package of example files for teaching data science.</span>

pkg/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name="wvpy",
11-
version="0.2.8",
11+
version="0.2.9",
1212
author="John Mount",
1313
author_email="[email protected]",
1414
url="https://github.com/WinVector/wvpy",

pkg/tests/test_plots.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import matplotlib.pyplot
55
import wvpy.util
66

7+
8+
# from:
9+
# https://github.com/WinVector/wvpy/blob/main/examples/example_graphs.ipynb
710
def test_graphs(monkeypatch):
811
# https://stackoverflow.com/a/60127271/6901725
912
monkeypatch.setattr(matplotlib.pyplot, 'show', lambda: None)

pkg/wvpy.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: wvpy
3-
Version: 0.2.8
3+
Version: 0.2.9
44
Summary: Simple utilities for teaching Pandas and scikit learn.
55
Home-page: https://github.com/WinVector/wvpy
66
Author: John Mount

0 commit comments

Comments
 (0)