diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e42291e..708b29f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v4 with: - python-version: "3.12" + python-version: "3.13" - name: Install project run: pip install -e .[check,test] - name: run pre-commit @@ -24,15 +24,9 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - pylint-version: ["2.17.*", "2.*", "3.*"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + pylint-version: ["3.0.*", "3.*"] invoke-version: ["2.0.*", "2.*"] - exclude: - # pylint 2.x does not support 3.12 - - python-version: "3.12" - pylint-version: "2.17.*" - - python-version: "3.12" - pylint-version: "2.*" runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4cea3ba..23341db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - name: Setup python uses: actions/setup-python@v4 with: - python-version: "3.12" + python-version: "3.13" - name: Install project run: pip install -e . - name: Install libraries diff --git a/CHANGELOG.md b/CHANGELOG.md index c6cfcd8..54ec876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ # Changelog +# 4.0.0 +* Minimum required pylint version is 3.0 +* Support python 3.13 +* Dropped support for python 3.8 + # 3.0.0 * Minimum required pylint version is 2.17 * Support python 3.12 * Add support for pylint 3.x -* Dropped support for python 3.8 +* Dropped support for python 3.7 # 2.0.0 * Removed support for invoke 1.x diff --git a/pyproject.toml b/pyproject.toml index a6e4aed..f6e1082 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,18 +18,18 @@ classifiers = [ "Operating System :: OS Independent", "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", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Quality Assurance", "Typing :: Typed" ] -requires-python = ">=3.8,<4" +requires-python = ">=3.9,<4" dependencies = [ "invoke~=2.0", - "pylint>=2.17,<4", + "pylint~=3.0", ] [project.license]