Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: keep Pylint at max version 3.2.7 #749

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
git+https://github.com/akaihola/darkgraylib.git@main \
defusedxml \
pygments \
pylint \
'pylint<=3.2.7' \
pytest>=6.2.0 \
regex \
requests \
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Added
- CI workflow to post recent project activity in a discussion. Triggered manually.
- The ``--preview`` configuration flag is now supported in the configuration files for
Darker and Black
- Prevent Pylint from updating beyond version 3.2.7 due to dropped Python 3.8 support.

Removed
-------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test =
pathspec # to test `gen_python_files` in `test_black_diff.py`
pydocstyle
pygments
pylint
pylint<=3.2.7 # pylint 3.3.0 dropped Python 3.8 support
pytest>=6.2.0
pytest-kwparametrize>=0.0.3
regex>=2021.4.4
Expand Down
Loading