mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-05 04:17:56 +00:00
Update with notes for latest release
This commit is contained in:
parent
1eed11b0f1
commit
c72ed7abcd
2 changed files with 18 additions and 2 deletions
18
README.md
18
README.md
|
|
@ -42,7 +42,8 @@ Prophet is on PyPI, so you can use `pip` to install it. From v0.6 onwards, Pytho
|
|||
|
||||
```bash
|
||||
# Install pystan with pip before using pip to install prophet
|
||||
pip install pystan
|
||||
# pystan>=3.0 is currently not supported
|
||||
pip install pystan==2.19.1.1
|
||||
|
||||
pip install prophet
|
||||
```
|
||||
|
|
@ -83,6 +84,21 @@ Make sure compilers (gcc, g++, build-essential) and Python development tools (py
|
|||
|
||||
## Changelog
|
||||
|
||||
### Version 1.0 (2021.03.28)
|
||||
|
||||
- Python package name changed from fbprophet to prophet
|
||||
- Fixed R Windows build issues to get latest version back on CRAN
|
||||
- Improvements in serialization, holidays, and R timezone handling
|
||||
- Plotting improvements
|
||||
|
||||
### Version 0.7 (2020.09.05)
|
||||
|
||||
- Built-in json serialization
|
||||
- Added "flat" growth option
|
||||
- Bugfixes related to `holidays` and `pandas`
|
||||
- Plotting improvements
|
||||
- Improvements in cross validation, such as parallelization and directly specifying cutoffs
|
||||
|
||||
### Version 0.6 (2020.03.03)
|
||||
|
||||
- Fix bugs related to upstream changes in `holidays` and `pandas` packages.
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Prophet is on PyPI, so you can use pip to install it:
|
|||
```
|
||||
# bash
|
||||
# Install pystan with pip before using pip to install prophet
|
||||
$ pip install pystan
|
||||
$ pip install pystan==2.19.1.1
|
||||
$
|
||||
$ pip install prophet
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue