diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5de4ccb..47c1c0e 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,12 +15,12 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, '3.10'] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/setup.cfg b/setup.cfg index 3daf56d..f632a55 100644 --- a/setup.cfg +++ b/setup.cfg @@ -42,7 +42,7 @@ universal = 1 [flake8] exclude = docs,tmp,tmpdist,local,lib,build,bin,dist,include,man -ignore = W503, C812, E501, T001 # E203, E266 +ignore = W503, C812, E501, T001 max-line-length = 88 max-complexity = 18 select = B,C,E,F,W,T4,B