diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b58a13d3..1cd88387 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: diff --git a/.pylintrc b/.pylintrc index b942dec7..3da02630 100644 --- a/.pylintrc +++ b/.pylintrc @@ -36,10 +36,6 @@ persistent=yes # Specify a configuration file. #rcfile= -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no @@ -76,7 +72,7 @@ disable=consider-using-in, consider-using-dict-items, unspecified-encoding, consider-using-f-string, - too-many-positional-arguments, + too-many-positional-arguments, duplicate-code, # Enable the message, report, category or checker with the given id(s). You can diff --git a/cmdstanpy/progress.py b/cmdstanpy/progress.py index 92f57b5a..8af40853 100644 --- a/cmdstanpy/progress.py +++ b/cmdstanpy/progress.py @@ -5,6 +5,7 @@ import functools import logging +# pylint: disable=invalid-name _SHOW_PROGRESS: bool = True