diff --git a/README.md b/README.md index ce7454a..642b22a 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,11 @@ - [Quick Start](#quick-start) - [Time Series Outlier Detection Workflow](#time-series-outlier-detection-workflow) - [Anomaly Detection for High Frequency Time Series](#anomaly-detection-for-high-frequency-time-series) +- [Examples](#examples) - [Contributing](#contributing) -- [Acknowledgements](#acknowledgements) +- [Citing](#citing) +- [Other Useful Resources](#other-useful-resources) +- [Blogs](#blogs) - [Development Team](#development-team) @@ -36,17 +39,6 @@ Install Luminaire from [PyPI](https://pypi.org/project/luminaire/) using ``pip`` pip install luminaire ``` -> **PLEASE READ** -> -> We had to remove `bayesian-changepoint-detection` package from requirements due to deployment issues in pypi -> (the latest version of scipy is not supported by `bayesian-changepoint-detection` v0.2.dev1). This is a dependency -> for Luminaire training and data exploration process. Until a proper resolution is applied, please manually install a -> compatible version of the package from github using the following script: -> -> ```bash -> pip install git+https://github.com/hildensia/bayesian_changepoint_detection@2dd95f5c1d028116899a842ccb3baa173f9d5be9#egg=bayesian-changepoint-detection -> ``` - Import ``luminaire`` module in python ```python import luminaire diff --git a/requirements.txt b/requirements.txt index 3a51f9f..798dc88 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +bayescd>=0.4 changepy>=0.3.1 hyperopt>=0.1.2 numpy>=1.17.5, <=1.22.4 diff --git a/setup.py b/setup.py index 1c433b9..1beb598 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='luminaire', - version='0.4.0', + version='0.4.1', license='Apache License 2.0',