Skip to content

Commit

Permalink
v.0.0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabrock94 committed Jan 11, 2021
1 parent 0880430 commit 6862f80
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 242 deletions.
191 changes: 0 additions & 191 deletions build/lib/pyeasytrend/__init__.py

This file was deleted.

Binary file removed dist/pyEasyTrend-0.0.0.6-py3.8.egg
Binary file not shown.
31 changes: 0 additions & 31 deletions pyEasyTrend.egg-info/PKG-INFO

This file was deleted.

9 changes: 0 additions & 9 deletions pyEasyTrend.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion pyEasyTrend.egg-info/dependency_links.txt

This file was deleted.

1 change: 0 additions & 1 deletion pyEasyTrend.egg-info/not-zip-safe

This file was deleted.

4 changes: 0 additions & 4 deletions pyEasyTrend.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion pyEasyTrend.egg-info/top_level.txt

This file was deleted.

6 changes: 3 additions & 3 deletions pyeasytrend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from scipy.stats import norm
import pandas as pd

__version__ = '0.0.0.6'
__version__ = '0.0.0.7'

MODEL_NAMES = ['Constant (mean y)', # y = mean
'Linear', # y = mx+1
Expand Down Expand Up @@ -57,9 +57,9 @@ def analyzeTrend(x, y, maxDegree = 2,
raise TypeError("maxDegree must be an interger value")
if(maxDegree < 1):
raise TypeError("maxDegree must be 1 (Linear model) or higher")
if(type(x) in [list, 'pandas.core.series.Series']):
if(type(x) not in [list, 'pandas.core.series.Series']):
raise TypeError("x must be a list")
if(type(y) in [list, 'pandas.core.series.Series']):
if(type(y) not in [list, 'pandas.core.series.Series']):
raise TypeError("y must be a list")
if(type(visualize) != bool):
raise TypeError("visualize must be a boolean")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

setup(name='pyEasyTrend',
version='0.0.0.6',
version='0.0.0.7',
description='A Python package to perform trend analysis using a single-line command.',
long_description="A Python package to perform trend analysis using a single-line command.",
url='https://github.com/Gabrock94/https://github.com/Gabrock94/pyEasyTrend',
Expand Down

0 comments on commit 6862f80

Please sign in to comment.