From 22437359b6d9f584de08b12eaa24da3f1c895f8c Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 4 Jun 2019 14:15:01 +0100 Subject: [PATCH] setup.py: Change short hand to install all extras to `all` In our documentation we detail being able to install the `all` extra as a shorthand for installing all the available extra packages that WA may require however this was actually implemented as `everything`. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b56e8bc9..8ffb624a 100755 --- a/setup.py +++ b/setup.py @@ -113,7 +113,7 @@ params = dict( ) all_extras = list(chain(iter(params['extras_require'].values()))) -params['extras_require']['everything'] = all_extras +params['extras_require']['all'] = all_extras class sdist(orig_sdist):