Skip to content
Closed
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repos:
types: [python]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.10
rev: v0.15.15
hooks:
# Run the linter
- id: ruff-check
Expand Down
1 change: 0 additions & 1 deletion marimo/_ai/_tools/tools/cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from marimo._types.ids import CellId_t, SessionId

if TYPE_CHECKING:
from marimo._ast.models import CellData
from marimo._session import Session


Expand Down
1 change: 0 additions & 1 deletion marimo/_ast/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
from marimo._types.ids import CellId_t

if TYPE_CHECKING:
from collections.abc import Sequence
from types import FrameType, TracebackType
from typing import TypeGuard

Expand Down
1 change: 0 additions & 1 deletion marimo/_lint/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import asyncio
import re
from collections.abc import AsyncIterator, Iterator
from dataclasses import dataclass, field
from pathlib import Path
from typing import TYPE_CHECKING
Expand Down
1 change: 0 additions & 1 deletion marimo/_plugins/ui/_impl/dataframes/transforms/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import datetime
import decimal
from collections.abc import Callable
from functools import reduce
from typing import TYPE_CHECKING, Any

Expand Down
5 changes: 2 additions & 3 deletions marimo/_plugins/ui/_impl/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from __future__ import annotations

import functools
from collections.abc import Callable
from dataclasses import dataclass
from typing import (
TYPE_CHECKING,
Expand All @@ -14,7 +13,7 @@
)

if TYPE_CHECKING:
from collections.abc import Mapping
from collections.abc import Callable, Mapping

from narwhals.typing import IntoDataFrame

Expand Down Expand Up @@ -78,7 +77,7 @@
)

if TYPE_CHECKING:
from collections.abc import Callable, Sequence
from collections.abc import Sequence

from narwhals.typing import IntoLazyFrame

Expand Down
1 change: 0 additions & 1 deletion marimo/_runtime/complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import html
import re
import sys
import threading
import time
from collections.abc import Collection, Mapping
from functools import lru_cache
Expand Down
1 change: 0 additions & 1 deletion marimo/_utils/narwhals_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import narwhals.dtypes as nw_dtypes
import narwhals.stable.v1 as nw1
import narwhals.stable.v2 as nw
from narwhals.typing import IntoDataFrame

from marimo import _loggers

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ dev = [
# Stubs for optional dataframe backends
"pyarrow-stubs",
# For linting
"ruff>=0.15.9",
"ruff>=0.15.15",
# For AI
"pydantic-ai-slim[openai]>=1.84.0",
]
Expand Down Expand Up @@ -263,7 +263,7 @@ typecheck = [

docs = [
"marimo_docs",
"ruff>=0.15.9",
"ruff>=0.15.15",
"mkdocs>=1.6.1",
# Live reloading broken in >= 9.6.21: https://github.com/squidfunk/mkdocs-material/issues/8478
"mkdocs-material==9.6.20",
Expand Down
1 change: 0 additions & 1 deletion tests/_runtime/test_manage_script_metadata.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright 2026 Marimo. All rights reserved.
from __future__ import annotations

import pathlib
from typing import TYPE_CHECKING, Any, cast
from unittest.mock import AsyncMock, Mock, call, patch

Expand Down
Loading