ci: fix dependencies

This commit is contained in:
Jens Langhammer 2018-12-09 21:11:43 +01:00
parent 0754b07765
commit bc691f4f4c
No known key found for this signature in database
GPG Key ID: BEBC05297D92821B
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ before_script:
- "python3 -m pip install -U virtualenv" - "python3 -m pip install -U virtualenv"
- "virtualenv env" - "virtualenv env"
- "source env/bin/activate" - "source env/bin/activate"
- "pip3 install -U -r requirements.txt -r requirements-dev.txt" - "pip3 install -U -r requirements-dev.txt"
stages: stages:
- test - test
- build - build

View File

@ -8,4 +8,5 @@ markdown
colorlog colorlog
celery celery
redis<3.0 redis<3.0
pymysql pymysql
idna<2.8,>=2.5

View File

@ -146,7 +146,6 @@ class OAuthCallback(OAuthClientMixin, View):
"Return url to redirect authenticated users." "Return url to redirect authenticated users."
return 'overview' return 'overview'
# pylint: disable=unused-argument
def get_or_create_user(self, source, access, info): def get_or_create_user(self, source, access, info):
"Create a shell auth.User." "Create a shell auth.User."
raise NotImplementedError() raise NotImplementedError()