Skip to content

Commit

Permalink
make REST extra lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
ltalirz committed Mar 23, 2018
1 parent 53b9f58 commit 7812518
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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']

0 comments on commit 7812518

Please sign in to comment.