Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

MAINT: Update ruff to 0.11.9 in linting requirements #28963

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

Merged
merged 4 commits into from
May 14, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix linting in np.random and np.polynomial (minus tests)
  • Loading branch information
eendebakpt committed May 14, 2025
commit 39f73c5604bd3655af6931229f3648b5926c5443
3 changes: 2 additions & 1 deletion 3 numpy/random/tests/test_extending.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
)
@pytest.mark.skipif(IS_WASM, reason="Can't start subprocess")
@pytest.mark.skipif(cython is None, reason="requires cython")
@pytest.mark.skipif(sysconfig.get_platform() == 'win-arm64', reason='Meson unable to find MSVC linker on win-arm64')
@pytest.mark.skipif(sysconfig.get_platform() == 'win-arm64',
reason='Meson unable to find MSVC linker on win-arm64')
@pytest.mark.slow
def test_cython(tmp_path):
import glob
Expand Down
3 changes: 1 addition & 2 deletions 3 ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ ignore = [
"numpy/_core/code_generators/generate_umath.py" = ["E501"]
"numpy/_typing/*py" = ["E501"]
"numpy/lib/*py" = ["E501"]
"numpy/linalg/*py" = ["E501"]
"numpy/linalg/tests/*py" = ["E501"]
"numpy/ma/*py" = ["E501"]
"numpy/tests/*py" = ["E501"]
"numpy/random/*py" = ["E501"]
"numpy*pyi" = ["E501"]
"numpy/f2py/*py" = ["E501"]
"__init__.py" = ["F401", "F403", "F405"]
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.