This is an automated email from the ASF dual-hosted git repository.

gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git


The following commit(s) were added to refs/heads/trunk by this push:
     new de3cde1  Fix the linting GHA.
de3cde1 is described below

commit de3cde1e9fa3852620f792f8de1747a612638685
Author: Greg Stein <[email protected]>
AuthorDate: Tue Sep 30 14:23:22 2025 -0500

    Fix the linting GHA.
---
 .github/workflows/linting.yml | 6 +++---
 v3/pyproject.toml             | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml
index 192ec51..0a13697 100644
--- a/.github/workflows/linting.yml
+++ b/.github/workflows/linting.yml
@@ -33,8 +33,8 @@ jobs:
         python-version: ${{ matrix.python-version }}
     - name: Install dependencies
       run: |
-        python -m pip install -r v3/requirements.txt
-        python -m pip install pylint
+        python -m pip install poetry
+        poetry install
     - name: Testing with pylint
       run: |
-          pylint v3
+        pylint v3
diff --git a/v3/pyproject.toml b/v3/pyproject.toml
index 3060b70..6c508c2 100644
--- a/v3/pyproject.toml
+++ b/v3/pyproject.toml
@@ -18,6 +18,7 @@ argon2-cffi = "^25.1.0"
 
 [tool.poetry.group.test.dependencies]
 coverage = "^7.10.6"
+pylint = "^3.3.8"
 
 [tool.poetry.group.server.dependencies]
 asfquart = ">=0.1.12"

Reply via email to