mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-07 17:15:37 +00:00
Remove Python 2 from setup.py (#1485)
* remove python 2 from setup.py and add python_requires * add note in README
This commit is contained in:
parent
caaaee8d34
commit
cb4f1dcc59
2 changed files with 3 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ If you have custom Stan compiler settings, install from source rather than the C
|
|||
|
||||
## Installation in Python
|
||||
|
||||
Prophet is on PyPI, so you can use `pip` to install it:
|
||||
Prophet is on PyPI, so you can use `pip` to install it. From v0.6 onwards, Python 2 is no longer supported.
|
||||
|
||||
```bash
|
||||
pip install fbprophet
|
||||
|
|
@ -84,6 +84,7 @@ Make sure compilers (gcc, g++, build-essential) and Python development tools (py
|
|||
- Fix bugs related to upstream changes in `holidays` and `pandas` packages.
|
||||
- Compile model during first use, not during install (to comply with CRAN policy)
|
||||
- `cmdstanpy` backend now available in Python
|
||||
- Python 2 no longer supported
|
||||
|
||||
### Version 0.5 (2019.05.14)
|
||||
|
||||
|
|
|
|||
|
|
@ -129,6 +129,7 @@ setup(
|
|||
setup_requires=[
|
||||
],
|
||||
install_requires=install_requires,
|
||||
python_requires='>=3',
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
cmdclass={
|
||||
|
|
@ -139,7 +140,6 @@ setup(
|
|||
test_suite='fbprophet.tests',
|
||||
classifiers=[
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue