From bb358f9efc120432a417ab49bc7c2fa677268ea8 Mon Sep 17 00:00:00 2001 From: Laura Gutierrez Funderburk Date: Wed, 15 Nov 2023 15:11:23 -0800 Subject: [PATCH] Update python-package.yml --- .github/workflows/python-package.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 8e7852b..d2b1e55 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.10", "3.11"] steps: - uses: actions/checkout@v3 @@ -29,12 +29,6 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pytest poetry poetry install - - name: Lint with flake8 - run: | - # 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 - name: Test with pytest run: | poetry run pytest