From 1b4aa114e3ea36db9caa6412a76d9843e12f7195 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Sun, 11 Jul 2021 23:35:13 +0530 Subject: [PATCH] Change setup extra from cv to base --- README.md | 4 ++-- docs/user/install.rst | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5ae0eee..9876bb7 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ $ conda install -c conda-forge camelot-py After [installing the dependencies](https://camelot-py.readthedocs.io/en/master/user/install-deps.html) ([tk](https://packages.ubuntu.com/bionic/python/python-tk) and [ghostscript](https://www.ghostscript.com/)), you can also just use pip to install Camelot:
-$ pip install "camelot-py[cv]"
+$ pip install "camelot-py[base]"
 
### From the source code @@ -93,7 +93,7 @@ and install Camelot using pip:
 $ cd camelot
-$ pip install ".[cv]"
+$ pip install ".[base]"
 
## Documentation diff --git a/docs/user/install.rst b/docs/user/install.rst index e7bf89e..20208ce 100644 --- a/docs/user/install.rst +++ b/docs/user/install.rst @@ -14,7 +14,7 @@ pip To install Camelot from PyPI using ``pip``, please include the extra ``cv`` requirement as shown:: - $ pip install "camelot-py[cv]" + $ pip install "camelot-py[base]" conda ----- @@ -37,4 +37,4 @@ After :ref:`installing the dependencies `, you can install Camelot :: $ cd camelot - $ pip install ".[cv]" + $ pip install ".[base]" diff --git a/setup.py b/setup.py index 371d6cd..f79acc3 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def setup_package(): extras_require={ "all": all_requires, "base": base_requires, - "cv": base_requires, # deprecate in v0.12.0 + "cv": base_requires, # deprecate "dev": dev_requires, "plot": plot_requires, },