From fb71c9651287756a172be17410271d5833681786 Mon Sep 17 00:00:00 2001 From: Aden Krakman Date: Mon, 5 Dec 2022 19:18:47 -0600 Subject: [PATCH] install Authlib for CI/CD --- .github/workflows/pylint.yml | 1 + src/backend/requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c2e66efdc..e74364d74 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -23,6 +23,7 @@ jobs: pip install flask-cors pip install BeautifulSoup4 pip install Flask-Session2 + pip install authlib - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py') diff --git a/src/backend/requirements.txt b/src/backend/requirements.txt index 81e779734..3ddd9c752 100644 --- a/src/backend/requirements.txt +++ b/src/backend/requirements.txt @@ -4,4 +4,5 @@ pylint==2.15.2 coverage==6.4.4 black==22.8.0 Flask_Cors==3.0.10 -Flask-Session2==1.3.1 \ No newline at end of file +Flask-Session2==1.3.1 +Authlib==1.1.0 \ No newline at end of file