Skip to content

Commit

Permalink
Merge pull request #109 from sayanchk/luminaire-v4-release
Browse files Browse the repository at this point in the history
Luminaire v4 release
  • Loading branch information
shahsmit14 authored Jul 26, 2022
2 parents 3d24650 + e660626 commit 57cc86d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ 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
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
changepy>=0.3.1
hyperopt>=0.1.2
numpy>=1.17.5
numpy>=1.17.5, <=1.22.4
pandas>=0.25.3
pykalman>=0.9.5
scipy>=1.6.0
statsmodels>=0.13.0
scikit-learn>=0.24.2
decorator>=5.1.0
py4j<=0.10.9.3
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.dev3',
version='0.4.0',

license='Apache License 2.0',

Expand Down

0 comments on commit 57cc86d

Please sign in to comment.