ci: fix dependencies
This commit is contained in:
parent
0754b07765
commit
bc691f4f4c
|
@ -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
|
||||||
|
|
|
@ -8,4 +8,5 @@ markdown
|
||||||
colorlog
|
colorlog
|
||||||
celery
|
celery
|
||||||
redis<3.0
|
redis<3.0
|
||||||
pymysql
|
pymysql
|
||||||
|
idna<2.8,>=2.5
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Reference in New Issue