Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make REST extra lowercase #1328

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
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
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']