From 3ce32f2846df5f9d9fd2bdf18669569a473018be Mon Sep 17 00:00:00 2001 From: Morgan Barber <109038897+morganbarber@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:20:01 -0700 Subject: [PATCH] Update python-news-scraper.yml --- .github/workflows/python-news-scraper.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-news-scraper.yml b/.github/workflows/python-news-scraper.yml index c4b7b45..6085a75 100644 --- a/.github/workflows/python-news-scraper.yml +++ b/.github/workflows/python-news-scraper.yml @@ -28,6 +28,7 @@ jobs: run: | python -m pip install --upgrade datetime python -m pip install --upgrade pip + python -m pip install --upgrade asyncio python -m pip install flake8 pytest python -m pip install --upgrade buildtools if [ -f requirements.txt ]; then pip install -r requirements.txt; fi @@ -36,4 +37,4 @@ jobs: # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics \ No newline at end of file + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics