From 7812518caaaaa251f066cfcf7063b9110fd14502 Mon Sep 17 00:00:00 2001 From: Leopold Talirz Date: Fri, 23 Mar 2018 11:17:37 +0100 Subject: [PATCH] make REST extra lowercase fix #1327 --- .travis.yml | 2 +- setup_requirements.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9f1f262f49..4862ffd2ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ install: # Upgrade pip setuptools and wheel to be able to run the next command - pip install -U pip wheel setuptools # Install AiiDA with some optional dependencies - - pip install .[REST,docs,atomic_tools,testing,dev_precommit] + - pip install .[rest,docs,atomic_tools,testing,dev_precommit] env: ## Build matrix to test both backends, and the docs diff --git a/setup_requirements.py b/setup_requirements.py index d76ad21e3c..dc14a54f82 100644 --- a/setup_requirements.py +++ b/setup_requirements.py @@ -79,7 +79,7 @@ 'python-gssapi==0.6.4', ], # Requirements for RESTful API - 'REST': [ + 'rest': [ 'Flask==0.10.1', 'Flask-RESTful==0.3.6', 'Flask-Cors==3.0.1', @@ -150,4 +150,4 @@ # the requirements (and there is no easy way on our side to fix a specific # installation order of dependencies) -extras_require['testing'] += extras_require['REST'] + extras_require['atomic_tools'] +extras_require['testing'] += extras_require['rest'] + extras_require['atomic_tools']