Skip to content
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
15 changes: 0 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,6 @@ jobs:
pip install cffconvert
cffconvert -i CITATION.cff --validate

pylint:
name: Pylint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
-
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: "Main Script"
run: |
EXTRA_INSTALL="numpy pymbolic orderedsets optype"
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-pylint.sh
. ./prepare-and-run-pylint.sh "$(basename $GITHUB_REPOSITORY)"

basedpyright:
runs-on: ubuntu-latest
steps:
Expand Down
11 changes: 0 additions & 11 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,6 @@ Ruff:
except:
- tags

Pylint:
script: |
EXTRA_INSTALL="numpy pymbolic orderedsets siphash24 optype"
py_version=3
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-pylint.sh
. ./prepare-and-run-pylint.sh "$CI_PROJECT_NAME"
tags:
- python3
except:
- tags

Documentation:
script: |
EXTRA_INSTALL="numpy siphash24 optype"
Expand Down
7 changes: 0 additions & 7 deletions .pylintrc-local.yml

This file was deleted.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ exclude = [
".conda-root",
"build",
".env",
".run-pylint.py",
]

# This reports even cycles that are qualified by 'if TYPE_CHECKING'. Not what
Expand Down
2 changes: 1 addition & 1 deletion pytools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2315,7 +2315,7 @@ def add_python_path_relative_to_script(rel_path: str) -> None:
# {{{ numpy dtype mangling

def common_dtype(dtypes: Iterator[DTypeLike],
default: DTypeLike = None) -> np.dtype[Any]:
default: DTypeLike | None = None) -> np.dtype[Any]:
import numpy as np

ddtypes = [np.dtype(dtype) for dtype in dtypes]
Expand Down
23 changes: 0 additions & 23 deletions run-pylint.sh

This file was deleted.

Loading