From 79cd50218a2fe0d985f99d27142c06cd698645c1 Mon Sep 17 00:00:00 2001 From: Chris B Date: Sat, 7 Jul 2018 15:24:15 +0100 Subject: [PATCH] Remove build dependency checks. See https://github.com/pyviz/autover/issues/54 --- setup.py | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/setup.py b/setup.py index 4d36fb1..311a9cb 100755 --- a/setup.py +++ b/setup.py @@ -1,26 +1,7 @@ from setuptools import setup -#### -# Build dependency checks -# -# Temporary, until pyproject.toml is widely supported. We're expecting -# most users to install a wheel or conda package, neither of which -# requires running setup.py and building a package. So these checks -# are for packagers and those installing from e.g. github. -import setuptools -from pkg_resources import parse_version -missing_build_dep = False -if parse_version(setuptools.__version__)=30.3.0 and param>=1.7.0; please upgrade to pip>=10 and try again. Alternatively, install the build dependencies manually first (e.g. `pip install --upgrade "setuptools>=30.3.0" "param>=1.7.0"` or `conda install -c pyviz "setuptools>=30.3.0" "param>=1.7.0"`)') -##### +# TODO: need to put in build dependency checks until pyproject.toml is widely +# supported. if __name__ == "__main__": setup()