From 2670daf89a166a0dc3357061669440d899dc98dc Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:34:44 -0400 Subject: [PATCH] ci(python): update flake8 workflow --- .flake8 | 3 +-- .github/workflows/python-flake8.yml | 5 ++--- docs/source/conf.py | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.flake8 b/.flake8 index 2d028b2d..2ea73951 100644 --- a/.flake8 +++ b/.flake8 @@ -1,7 +1,6 @@ [flake8] filename = - *.py, - *.pys + *.py max-line-length = 120 extend-exclude = venv/ diff --git a/.github/workflows/python-flake8.yml b/.github/workflows/python-flake8.yml index 61e23f74..015a8598 100644 --- a/.github/workflows/python-flake8.yml +++ b/.github/workflows/python-flake8.yml @@ -26,12 +26,11 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 # https://github.com/actions/setup-python with: - python-version: '3.10' + python-version: '3.12' - name: Install dependencies run: | - # pin flake8 before v6.0.0 due to removal of support for type comments (required for Python 2.7 type hints) - python -m pip install --upgrade pip setuptools "flake8<6" + python -m pip install --upgrade pip setuptools flake8 - name: Test with flake8 run: | diff --git a/docs/source/conf.py b/docs/source/conf.py index ee0d3e09..e7cae746 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ # -- Project information ----------------------------------------------------- project = 'LizardByte' -project_copyright = f'{datetime.now ().year}, {project}' +project_copyright = f'{datetime.now().year}, {project}' author = 'ReenigneArcher' # The full version, including alpha/beta/rc tags