From 5d9daa397202c15a9e5e4cba928fcabd1873ac6d Mon Sep 17 00:00:00 2001 From: Ahmed Darwish Date: Mon, 20 May 2024 13:25:11 -0400 Subject: [PATCH] Added Pylint to `requirements-dev.txt` (#5697) **Context:** Pylint was missing from the `requirements-dev.txt` despite being needed for the CI pipeline and pre-commit. **Description of the Change:** Added `pylint==2.7.4`, mirroring the version used in the CI pipeline. [[sc-63430](https://app.shortcut.com/xanaduai/story/63430/)] --------- Co-authored-by: Thomas R. Bromley <49409390+trbromley@users.noreply.github.com> --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index d9bcf391f5e..496d76a6bc4 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -9,3 +9,4 @@ pytest-benchmark black>=21 tomli~=2.0.0 # Drop once minimum Python version is 3.11 isort==5.13.2 +pylint==2.7.4