diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 82b5fef..2abe06b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,7 +27,7 @@ on: - '.github/**' env: - PYTHON_VERSION: 3.11 + PYTHON_VERSION: 3.12 jobs: lint: @@ -45,10 +45,10 @@ jobs: fetch-depth: 0 submodules: true - - name: Setup Python 3.11 + - name: Setup Python 3.12 uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 with: - python-version: 3.11 + python-version: 3.12 cache: pip cache-dependency-path: | **/pyproject.toml diff --git a/.pylintrc b/.pylintrc index fdf9ae9..f0326d3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -90,7 +90,7 @@ persistent=yes # Minimum Python version to use for version dependent checks. Will default to # the version used to run pylint. -py-version=3.9 +py-version=3.10 # Discover python modules and packages in the file system subtree. recursive=no diff --git a/tox.ini b/tox.ini index 70c88a1..68f8f57 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 [tox] -# py3-unit runs unit tests with 'python3' -# py311-unit runs the same tests with 'python3.11' envlist = ruff, lint, mypy, spellcheck minversion = 4.4