Skip to content

Commit 5611f3e

Browse files
authored
Merge pull request #816 from EwoutH/patch-1
CI: Add Python 3.14 to test matrix
2 parents 8475e7e + ab07a11 commit 5611f3e

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
os: [ubuntu-latest, macos-latest, windows-latest]
47-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
47+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
4848
env:
4949
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
5050
steps:

.pylintrc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ persistent=yes
3636
# Specify a configuration file.
3737
#rcfile=
3838

39-
# When enabled, pylint would attempt to guess common misconfiguration and emit
40-
# user-friendly hints instead of false-positive error messages.
41-
suggestion-mode=yes
42-
4339
# Allow loading of arbitrary C extensions. Extensions are imported into the
4440
# active Python interpreter and may run arbitrary code.
4541
unsafe-load-any-extension=no
@@ -76,7 +72,7 @@ disable=consider-using-in,
7672
consider-using-dict-items,
7773
unspecified-encoding,
7874
consider-using-f-string,
79-
too-many-positional-arguments,
75+
too-many-positional-arguments,
8076
duplicate-code,
8177

8278
# Enable the message, report, category or checker with the given id(s). You can

cmdstanpy/progress.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import functools
66
import logging
77

8+
# pylint: disable=invalid-name
89
_SHOW_PROGRESS: bool = True
910

1011

0 commit comments

Comments
 (0)