Skip to content

Commit

Permalink
minor issues in versions
Browse files Browse the repository at this point in the history
  • Loading branch information
josemiotto committed May 24, 2020
1 parent f8e696b commit d6ba8cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ setup.py
test.py
levy/__init__.py
levy/cdf.npz
levy/limits.npz
levy/lower_limit.npz
levy/pdf.npz
levy/upper_limit.npz
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
description='A package for calculating and fitting Levy stable distributions.',
long_description=levy.__doc__,
packages=['levy'],
package_data={'levy': ['cdf.npz', 'pdf.npz', 'limits.npz']},
package_data={'levy': ['cdf.npz', 'pdf.npz', 'lower_limit.npz', 'upper_limit.npz']},
options={'sdist': {'force_manifest': True}},
)
2 changes: 2 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ def get_quantiles(l):
return l[int(n * 0.5)], l[int(n * 0.05)], l[int(n * 0.95)]


np.random.seed(0)

alpha = 0.5 + 1.5 * np.random.rand()
beta = -1 + 2 * np.random.rand()
mu = 0.0
Expand Down

0 comments on commit d6ba8cf

Please sign in to comment.