Skip to content

Commit

Permalink
Drop 3.7 from CI, only run lint on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilmanAIDENTIFIED committed Nov 3, 2023
1 parent b52e935 commit 8e3ed6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v1
Expand All @@ -21,8 +21,9 @@ jobs:
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
pipenv install --dev --python `which python`
pipenv install --dev --skip-lock --python `which python`
- name: Linting and formatting
if: ${{ matrix.python-version == '3.11' }}
run: |
# stop the build if there are Python syntax errors or undefined names
pipenv run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
Expand Down

0 comments on commit 8e3ed6a

Please sign in to comment.