Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue #110: bayescd dependency added in requirements #117

Merged
merged 3 commits into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
bayescd==0.4
shahsmit14 marked this conversation as resolved.
Show resolved Hide resolved
changepy>=0.3.1
hyperopt>=0.1.2
numpy>=1.17.5, <=1.22.4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='luminaire',
version='0.4.0',
version='0.4.1',

license='Apache License 2.0',

Expand Down