diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e326e47..0c599045 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python: ['3.9', '3.10', '3.11', '3.12', '3.13'] os: [ubuntu-latest, windows-latest, macos-13, macos-latest] tox_env: [py] include: @@ -36,8 +36,6 @@ jobs: exclude: # macos-14 AKA macos-latest has switched to being an ARM runner, only supporting newer versions of Python # https://github.com/actions/setup-python/issues/825#issuecomment-2096792396 - - python: '3.8' - os: macos-latest - python: '3.9' os: macos-latest - python: '3.10' diff --git a/requirements.txt b/requirements.txt index 991b1c60..f7b627b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ packaging==24.2.* pylint-plugin-utils==0.8.* -pylint==3.1.* -validators==0.24.* +pylint==3.3.* +validators==0.34.* diff --git a/setup.cfg b/setup.cfg index 218db964..70d48134 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ summary = Pylint plugin for Odoo long_description_content_type = text/markdown license = APGL3 home_page = https://github.com/OCA/pylint-odoo -requires_python = >=3.8 +requires_python = >=3.9 classifier = Development Status :: 6 - Mature Environment :: Console @@ -18,7 +18,6 @@ classifier = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 diff --git a/tox.ini b/tox.ini index 60142534..5b0203cb 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,6 @@ envlist = lint, update-readme, build, - py38, py39, py310, py311,