Skip to content

Commit 95de4ae

Browse files
authored
Merge pull request #84 from phobson/update-readme
update example figure for readme
2 parents 60e0c3c + 41c0131 commit 95de4ae

14 files changed

+53
-101
lines changed

.coveragerc

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
[run]
33
source = probscale
44
branch = True
5-
include = probscale/*.py
65
omit =
76
probscale/tests/*
87

.github/workflows/black.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
name: black
1+
name: Lint with Black
22

3-
on: [pull_request]
3+
on: [push, pull_request]
44

55
jobs:
6-
black:
6+
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- name: Black Code Formatter
11-
uses: lgeiger/[email protected]
12-
with:
13-
args: ". --check --exclude=docs/*"
9+
- uses: actions/checkout@v3
10+
- uses: psf/black@stable

.github/workflows/check-test-coverage.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Coverage via codecov
1+
name: Coverage (with doctests)
22
on:
33
push:
44
branches: [ master ]
@@ -19,9 +19,9 @@ jobs:
1919
python -m pip install --upgrade pip
2020
pip install pytest pytest-cov pytest-mpl coverage docopt
2121
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
22-
pip install scipy
22+
pip install scipy seaborn
2323
export MPL_IMGCOMP_TOLERANCE=20
24-
coverage run --source probscale check_probscale.py --doctest-modules --mpl --cov-report=xml
24+
coverage run -m pytest --mpl --doctest-glob="probscale/*.py" --cov-report=xml
2525
- name: Upload coverage to Codecov
2626
uses: codecov/codecov-action@v1
2727
with:

.github/workflows/python-runtests-all.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

4-
name: Image comparison tests
4+
name: Run units test (w/ img comps)
55

66
on:
77
push:
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -31,4 +31,4 @@ jobs:
3131
- name: Test with pytest
3232
run: |
3333
export MPL_IMGCOMP_TOLERANCE=20
34-
python check_probscale.py --mpl --doctest-modules
34+
python -m pytest --mpl

CONTRIBUTING.rst

+1-30
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Ready to contribute? Here's how to set up `probscale` for local development.
7979

8080
5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox::
8181

82-
$ python check_probscale.py --mpl --pep8 --cov
82+
$ python -m pytest --mpl --pep8 --cov
8383

8484
6. Commit your changes and push your branch to GitHub::
8585

@@ -115,35 +115,6 @@ To run a subset of tests::
115115
$ py.test tests.test_probscale
116116

117117

118-
Configuring Sublime Text 3 to run the tests
119-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
120-
121-
In Sublime, got to Tools -> Build System -> New Build System.
122-
Then add the following configuration and save as "probscale.sublime-build"::
123-
124-
{
125-
"working_dir": "<path to the git repository>",
126-
"cmd": "<full path of the python executable> check_probscale.py --verbose <other pytest options>",
127-
}
128-
129-
130-
Configuring Atom to run the tests
131-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
132-
133-
In Atom, install the build_ package, create a new file called ".atom-build.yml" in the
134-
top level of the project directory, and add the following contents::
135-
136-
cmd: "<full path of the python executable>"
137-
name: "probscale"
138-
args:
139-
- check_probscale.py
140-
- --verbose
141-
- <other pytest options ...>
142-
cwd: <path to the git repository>
143-
sh: false
144-
keymap: ctrl-b
145-
atomCommandName: namespace:testprobscale
146-
147118
After this, hitting ctrl+b in either text editor will run the test suite.
148119

149120
.. _build: https://atom.io/packages/build

README.md

+1-21
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
Real probability scales for matplotlib
44

5-
![Code Style](https://github.com/matplotlib/mpl-probscale/workflows/black/badge.svg)
65
![Coverage](https://github.com/matplotlib/mpl-probscale/workflows/Coverage%20via%20codecov/badge.svg)
76
![Linter](https://github.com/matplotlib/mpl-probscale/workflows/Lint%20with%20flake8/badge.svg)
8-
![Basic Tests](https://github.com/matplotlib/mpl-probscale/workflows/Basic%20unit%20tests/badge.svg)
9-
![Image Comparisons](https://github.com/matplotlib/mpl-probscale/workflows/Image%20comparison%20tests/badge.svg)
7+
![Tests](https://github.com/matplotlib/mpl-probscale/workflows/Image%20comparison%20tests/badge.svg)
108

119
[Sphinx Docs](http://matplotlib.org/mpl-probscale/)
1210

@@ -30,38 +28,20 @@ cd mpl-probscale
3028
pip install -e .
3129
```
3230

33-
### Additional Depedencies
34-
35-
This library depends on **pytest** framework.
36-
The current release version does not have it listed as a hard dependency, however.
37-
So for now you will need to install ``pytest`` yourself to use mpl-probscale:
38-
39-
`pip install pytest`
40-
41-
or
42-
43-
`conda install pytest --channel=conda-forge`
44-
45-
In the next release, this depedency will be made optional.
46-
4731
## Quick start
4832

4933
Simply importing `probscale` lets you use probability scales in your matplotlib figures:
5034

5135
```python
5236
import matplotlib.pyplot as plt
5337
import probscale
54-
import seaborn
55-
clear_bkgd = {'axes.facecolor':'none', 'figure.facecolor':'none'}
56-
seaborn.set(style='ticks', context='notebook', rc=clear_bkgd)
5738

5839
fig, ax = plt.subplots(figsize=(8, 4))
5940
ax.set_ylim(1e-2, 1e2)
6041
ax.set_yscale('log')
6142

6243
ax.set_xlim(0.5, 99.5)
6344
ax.set_xscale('prob')
64-
seaborn.despine(fig=fig)
6545
```
6646

6747
![Alt text](docs/img/example.png "Example axes")

check_probscale.py

-7
This file was deleted.

docs/examples/example.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# %%
2+
from pathlib import Path
3+
4+
from matplotlib import pyplot
5+
from scipy import stats
6+
import probscale # nothing else needed
7+
8+
beta = stats.beta(a=3, b=4)
9+
weibull = stats.weibull_min(c=5)
10+
scales = [
11+
{"scale": {"value": "linear"}, "label": "Linear (built-in)"},
12+
{"scale": {"value": "log", "base": 10}, "label": "Log. Base 10 (built-in)"},
13+
{"scale": {"value": "log", "base": 2}, "label": "Log. Base 2 (built-in)"},
14+
{"scale": {"value": "logit"}, "label": "Logit (built-in)"},
15+
{"scale": {"value": "prob"}, "label": "Standard Normal Probability (this package)"},
16+
{
17+
"scale": {"value": "prob", "dist": weibull},
18+
"label": "Weibull probability scale, c=5 (this package)",
19+
},
20+
{
21+
"scale": {"value": "prob", "dist": beta},
22+
"label": "Beta probability scale, α=3 & β=4 (this package)",
23+
},
24+
]
25+
26+
N = len(scales)
27+
fig, axes = pyplot.subplots(nrows=N, figsize=(9, N - 1), constrained_layout=True)
28+
for scale, ax in zip(scales, axes.flat):
29+
ax.set_xscale(**scale["scale"])
30+
ax.text(0.0, 0.1, scale["label"] + " →", transform=ax.transAxes)
31+
ax.set_xlim(left=0.5, right=99.5)
32+
ax.set_yticks([])
33+
ax.spines.left.set_visible(False)
34+
ax.spines.right.set_visible(False)
35+
ax.spines.top.set_visible(False)
36+
37+
outpath = Path(__file__).parent.joinpath("../img/example.png").resolve()
38+
fig.savefig(outpath, dpi=300)

docs/img/example.png

176 KB
Loading

docs/sphinxext/ipython_directive.py

-7
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ def block_parser(part, rgxin, rgxout, fmtin, fmtout):
180180
i = 0
181181
decorator = None
182182
while 1:
183-
184183
if i == N:
185184
# nothing left to parse -- the last line
186185
break
@@ -215,7 +214,6 @@ def block_parser(part, rgxin, rgxout, fmtin, fmtout):
215214

216215
rest = []
217216
while i < N:
218-
219217
# look ahead; if the next line is blank, or a comment, or
220218
# an output line, we're done
221219

@@ -278,7 +276,6 @@ class EmbeddedSphinxShell(object):
278276
"""An embedded IPython instance to run inside Sphinx"""
279277

280278
def __init__(self, exec_lines=None, state=None):
281-
282279
self.cout = DecodingStringIO("")
283280

284281
if exec_lines is None:
@@ -526,7 +523,6 @@ def process_output(
526523
TAB = " " * 4
527524

528525
if is_doctest and output is not None:
529-
530526
found = output
531527
found = found.strip()
532528
submitted = data.strip()
@@ -693,7 +689,6 @@ def process_pure_python(self, content):
693689
ct = 0
694690

695691
for lineno, line in enumerate(content):
696-
697692
line_stripped = line.strip()
698693
if not len(line):
699694
output.append(line)
@@ -770,7 +765,6 @@ def custom_doctest(self, decorator, input_lines, found, submitted):
770765

771766

772767
class IPythonDirective(Directive):
773-
774768
has_content = True
775769
required_arguments = 0
776770
optional_arguments = 4 # python, suppress, verbatim, doctest
@@ -973,7 +967,6 @@ def setup(app):
973967

974968
# Simple smoke test, needs to be converted to a proper automatic test.
975969
def test():
976-
977970
examples = [
978971
r"""
979972
In [9]: pwd

docs/sphinxext/plot_directive.py

-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@
158158
def format_template(template, **kw):
159159
return jinja2.Template(template).render(**kw)
160160

161-
162161
except ImportError:
163162
import jinja
164163

@@ -652,7 +651,6 @@ def render_figures(
652651
close_figs = not context or close_figs
653652

654653
for i, code_piece in enumerate(code_pieces):
655-
656654
if not context or config.plot_apply_rcparams:
657655
clear_state(config.plot_rcparams, close_figs)
658656
elif close_figs:

docs/sphinxext/plot_generator.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,8 @@ def __init__(self, filename, target_dir):
164164
if not op.exists(outfilename) or (
165165
op.getmtime(outfilename) < op.getmtime(filename)
166166
):
167-
168167
self.exec_file()
169168
else:
170-
171169
print("skipping {0}".format(self.filename))
172170

173171
@property
@@ -226,8 +224,7 @@ def plotfunc(self):
226224
return ""
227225

228226
def extract_docstring(self):
229-
""" Extract a module-level docstring
230-
"""
227+
"""Extract a module-level docstring"""
231228
lines = open(self.filename).readlines()
232229
start_row = 0
233230
if lines[0].startswith("#!"):
@@ -332,7 +329,6 @@ def main(app):
332329

333330
# Write individual example files
334331
for filename in glob.glob(op.join(source_dir, "*.py")):
335-
336332
ex = ExampleGenerator(filename, target_dir)
337333

338334
banner_data.append(

probscale/tests/__init__.py

-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +0,0 @@
1-
from pkg_resources import resource_filename
2-
3-
import probscale
4-
5-
6-
def test(*args):
7-
try:
8-
import pytest
9-
except ImportError:
10-
raise ImportError("`pytest` is required to run the test suite")
11-
12-
options = [resource_filename("probscale", "tests")]
13-
options.extend(list(args))
14-
return pytest.main(options)

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def search(substr: str, content: str):
3737
"Programming Language :: Python :: 3.9",
3838
"Programming Language :: Python :: 3.10",
3939
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
4041
]
4142
INSTALL_REQUIRES = ["numpy", "matplotlib"]
4243
PACKAGE_DATA = {

0 commit comments

Comments
 (0)