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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
- name: Install dependencies
run: pip install -U -r requirements_minimal.txt
- name: Download all coverage artifacts
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0
- name: Combine Linux coverage results
run: |
coverage combine coverage-linux*/.coverage
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
id-token: write
steps:
- name: Download release assets
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0
with:
name: release-assets
path: dist/
Expand All @@ -67,7 +67,7 @@ jobs:
id-token: write
steps:
- name: Download release assets
uses: actions/download-artifact@v5.0.0
uses: actions/download-artifact@v6.0.0
with:
name: release-assets
path: dist/
Expand Down
1 change: 0 additions & 1 deletion astroid/interpreter/_import/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ def is_namespace(modname: str) -> bool:

# Repair last_submodule_search_locations
if last_submodule_search_locations:
# pylint: disable=unsubscriptable-object
last_item = last_submodule_search_locations[-1]
# e.g. for failure example above, add 'a/b' and keep going
# so that find_spec('a.b.c', path=['a', 'a/b']) succeeds
Expand Down
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ unsafe-load-any-extension=no
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=
extension-pkg-whitelist=mypy

# Minimum supported python version
py-version = 3.10.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Tools used during development, prefer running these with pre-commit
black
pre-commit
pylint>=3.2.7
pylint>=4.0.0
ruff
2 changes: 1 addition & 1 deletion tests/test_raw_building.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from __future__ import annotations

import _io
import _io # pylint: disable=wrong-import-order
import logging
import os
import sys
Expand Down