Skip to content

Commit c947be3

Browse files
committed
Merge pull request #15 from phobson/dist-agnostic-probplot
specify distribution in viz.probplot
2 parents 2d735ff + 5a6f326 commit c947be3

File tree

12 files changed

+69
-104
lines changed

12 files changed

+69
-104
lines changed

conda.recipe/dev/bld.bat

Lines changed: 0 additions & 8 deletions
This file was deleted.

conda.recipe/dev/build.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

conda.recipe/dev/meta.yaml renamed to conda.recipe/meta.yaml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
package:
22
name: mpl-probscale
3-
version: 0.1.1
3+
version: 0.1.2dev
44

55
source:
6-
path: ../../
7-
# patches:
8-
# List any patch files here
9-
# - fix.patch
6+
path: ../
107

118
build:
12-
number: 1
9+
script: python setup.py install
10+
number: 2
1311

1412
requirements:
1513
build:
1614
- python
1715
- numpy
1816
- matplotlib
17+
- nose
1918

2019
run:
2120
- python
@@ -38,7 +37,3 @@ about:
3837
home: http://phobson.github.io/mpl-probscale/
3938
license: BSD License
4039
summary: 'Probability scales for matplotlib.'
41-
42-
# See
43-
# http://docs.continuum.io/conda/build.html for
44-
# more information about meta.yaml/configure

conda.recipe/release/bld.bat

Lines changed: 0 additions & 8 deletions
This file was deleted.

conda.recipe/release/build.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

conda.recipe/release/meta.yaml

Lines changed: 0 additions & 41 deletions
This file was deleted.

probscale/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from .viz import *
44
from .probscale import ProbScale
5+
from .tests import test
56

67
scale.register_scale(ProbScale)
7-
8-
from numpy.testing import Tester
9-
test = Tester().test

probscale/tests/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from numpy.testing import Tester
2+
test = Tester().test
Loading
Loading

0 commit comments

Comments
 (0)