Skip to content

Commit 316dce9

Browse files
committedFeb 9, 2017
update docs for MPL org
1 parent 130be22 commit 316dce9

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed
 

‎docs/index.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
mpl-probscale: Real probability scales for matplotlib
88
=====================================================
99

10-
.. image:: https://travis-ci.org/phobson/watershed.svg?branch=master
11-
:target: https://travis-ci.org/phobson/watershed
10+
.. image:: https://travis-ci.org/matplotlib/mpl-probscale.svg?branch=master
11+
:target: https://travis-ci.org/matplotlib/mpl-probscale
1212

13-
.. image:: https://coveralls.io/repos/phobson/mpl-probscale/badge.svg?branch=master&service=github
14-
:target: https://coveralls.io/github/phobson/mpl-probscale?branch=master
13+
.. image:: https://coveralls.io/repos/matplotlib/mpl-probscale/badge.svg?branch=master&service=github
14+
:target: https://coveralls.io/github/matplotlib/mpl-probscale?branch=master
1515

16-
https://github.com/phobson/mpl-probscale
16+
https://github.com/matplotlib/mpl-probscale
1717

1818
Installation
1919
------------
@@ -34,7 +34,7 @@ Development builds
3434

3535
Development builds are available through my conda channel:
3636

37-
``conda install mpl-probscale --channel=phobson``
37+
``conda install mpl-probscale --channel=conda-forge``
3838

3939

4040
Quickstart

‎docs/installation.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ You can either clone the public repository:
3232

3333
.. code-block:: console
3434
35-
$ git clone git://github.com/phobson/probscale
35+
$ git clone git://github.com/matplotlib/mpl-probscale
3636
3737
Or download the `tarball`_:
3838

3939
.. code-block:: console
4040
41-
$ curl -OL https://github.com/phobson/probscale/tarball/master
41+
$ curl -OL https://github.com/matplotlib/mpl-probscale/tarball/master
4242
4343
Once you have a copy of the source, you can install it with:
4444

@@ -47,5 +47,5 @@ Once you have a copy of the source, you can install it with:
4747
$ pip install .
4848
4949
50-
.. _Github repo: https://github.com/phobson/probscale
51-
.. _tarball: https://github.com/phobson/probscale/tarball/master
50+
.. _Github repo: https://github.com/matplotlib/mpl-probscale
51+
.. _tarball: https://github.com/matplotlib/mpl-probscale/tarball/master

‎docs/tutorial/getting_started.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Installation\n",
1010
"\n",
11-
"`mpl-probscale` is developed on Python 3.5. It is also tested on Python 3.4 and even 2.7 (for the time being).\n",
11+
"`mpl-probscale` is developed on Python 3.6. It is also tested on Python 3.4, 3.5, and even 2.7 (for the time being).\n",
1212
"\n",
1313
"### From conda\n",
1414
"Official releases of `mpl-probscale` can be found on conda-forge:\n",
@@ -17,7 +17,7 @@
1717
"\n",
1818
"Fairly recent builds of the development verions are available on my channel:\n",
1919
"\n",
20-
"`conda install --channel=phobson mpl-probscale`\n",
20+
"`conda install --channel=conda-forge mpl-probscale`\n",
2121
"\n",
2222
"\n",
2323
"### From PyPI\n",
@@ -27,7 +27,7 @@
2727
"\n",
2828
"### From source\n",
2929
"\n",
30-
"`mpl-probscale` is a pure python package. It should be fairly trivial to install from source on any platform. To do that, download or clone from [github](https://github.com/phobson/mpl-probscale), unzip the archive if necessary then do:\n",
30+
"`mpl-probscale` is a pure python package. It should be fairly trivial to install from source on any platform. To do that, download or clone from [github](https://github.com/matplotlib/mpl-probscale), unzip the archive if necessary then do:\n",
3131
"\n",
3232
"```\n",
3333
"cd mpl-probscale # or wherever the setup.py got placed\n",

‎probscale/tests/test_viz.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
if PY27: # pragma: no cover
2121
import mock
2222
TIGHT_TOLERANCE = 15
23-
LOOSE_TOLERANCE = 18
23+
LOOSE_TOLERANCE = 20
2424
else:
2525
from unittest import mock
2626
TIGHT_TOLERANCE = 13

0 commit comments

Comments
 (0)