Skip to content

Commit

Permalink
[REF] pylint_odoo: Update pylint version and drop support for py38 (#515
Browse files Browse the repository at this point in the history
)

We are updating the pylint version used where drops support for python 3.8
  • Loading branch information
moylop260 authored Jan 10, 2025
1 parent 95669cd commit 27391ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packaging==24.2.*
pylint-plugin-utils==0.8.*
pylint==3.1.*
validators==0.24.*
pylint==3.3.*
validators==0.34.*
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ envlist =
lint,
update-readme,
build,
py38,
py39,
py310,
py311,
Expand Down

0 comments on commit 27391ab

Please sign in to comment.