Skip to content

Commit dc197b7

Browse files
author
Sylvain MARIE
committed
Improved setup manual install exception message
1 parent 6bd08cc commit dc197b7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121
try:
2222
from setuptools_scm import get_version
2323
except Exception as e:
24-
raise_from(Exception('Required packages for setup not found. You may wish you execute '
25-
'"pip install -r ci_tools/requirements-setup.txt" to install them or alternatively install '
26-
'them manually using conda or other system. The list is : ' + str(SETUP_REQUIRES)), e)
24+
raise_from(Exception('Required packages for setup not found. Please install `setuptools_scm`'), e)
2725

2826
# ************** ID card *****************
2927
DISTNAME = 'pytest-cases'

0 commit comments

Comments
 (0)