Skip to content

Commit 0927199

Browse files
committed
declare Python 3.9
1 parent adf5567 commit 0927199

File tree

12 files changed

+25
-17
lines changed

12 files changed

+25
-17
lines changed

README.ipynb

Lines changed: 9 additions & 9 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ wvpy.__version__
1616

1717

1818

19-
'0.2.3'
19+
'0.2.4'
2020

2121

2222

@@ -34,8 +34,8 @@ wvpy.util.mk_cross_plan(10,2)
3434

3535

3636

37-
[{'train': [0, 3, 4, 6, 8], 'test': [1, 2, 5, 7, 9]},
38-
{'train': [1, 2, 5, 7, 9], 'test': [0, 3, 4, 6, 8]}]
37+
[{'train': [2, 4, 5, 6, 7], 'test': [0, 1, 3, 8, 9]},
38+
{'train': [0, 1, 3, 8, 9], 'test': [2, 4, 5, 6, 7]}]
3939

4040

4141

@@ -107,13 +107,15 @@ wvpy.util.plot_roc(
107107

108108

109109

110+
110111
![png](output_7_1.png)
112+
111113

112114

113115

114116

115117

116-
0.9017104802533561
118+
0.8758830658271999
117119

118120

119121

@@ -170,7 +172,9 @@ wvpy.util.threshold_plot(
170172
```
171173

172174

175+
173176
![png](output_9_0.png)
177+
174178

175179

176180

@@ -186,7 +190,9 @@ wvpy.util.threshold_plot(
186190
```
187191

188192

193+
189194
![png](output_10_0.png)
195+
190196

191197

192198

output_10_0.png

-565 Bytes
Loading

output_7_1.png

234 Bytes
Loading

output_9_0.png

302 Bytes
Loading

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.3"
2+
__version__ = "0.2.4"
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.3.tar.gz

-6.36 KB
Binary file not shown.
Binary file not shown.

pkg/dist/wvpy-0.2.4.tar.gz

6.86 KB
Binary file not shown.

pkg/setup.py

Lines changed: 2 additions & 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.3",
11+
version="0.2.4",
1212
author="John Mount",
1313
author_email="[email protected]",
1414
url="https://github.com/WinVector/wvpy",
@@ -26,6 +26,7 @@
2626
"Programming Language :: Python :: 3.6",
2727
"Programming Language :: Python :: 3.7",
2828
"Programming Language :: Python :: 3.8",
29+
"Programming Language :: Python :: 3.9",
2930
"License :: OSI Approved :: BSD License",
3031
],
3132
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)