From 7a1dd517b8470ac3e01ff41075a076ef8aad5e44 Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Sat, 21 Sep 2019 15:47:34 -0700 Subject: externals: avoid importing requests in jsonschema Spack doesn't need `requests`, and neither does `jsonschema`, but `jsonschema` tries to import it, and it'll succeed if `requests` is on your machine (which is likely, given how popular it is). This commit removes the import to improve Spack's startup time a bit. On a mac with SSD, the import of requests is ~28% of Spack's startup time when run as `spack --print-shell-vars sh,modules` (.069 / .25 seconds), which is what `setup-env.sh` runs. On a Linux cluster where Python is mounted from NFS, this reduces `setup-env.sh` source time from ~1s to .75s. Note: This issue will be eliminated if we upgrade to a newer `jsonschema` (we'd need to drop Python 2.6 for that). See https://github.com/Julian/jsonschema/pull/388. --- lib/spack/external/jsonschema/validators.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/spack/external/jsonschema/validators.py b/lib/spack/external/jsonschema/validators.py index 3e326844f4..30c3515398 100644 --- a/lib/spack/external/jsonschema/validators.py +++ b/lib/spack/external/jsonschema/validators.py @@ -4,10 +4,7 @@ import contextlib import json import numbers -try: - import requests -except ImportError: - requests = None +requests = None from jsonschema import _utils, _validators from jsonschema.compat import ( -- cgit v1.2.3-60-g2f50