bito-code-review[bot] commented on PR #35912:
URL: https://github.com/apache/superset/pull/35912#issuecomment-3468860680
<details open>
<summary><strong>Interaction Diagram by <a
href="https://bito.ai#sequence_diagram">Bito</a></strong></summary>
```mermaid
sequenceDiagram
participant PkgMgr as Package Manager<br/>🔄 Updated | ●●● High
participant PyProj as pyproject.toml
participant PandasLib as Pandas Library<br/>2.1.4+
participant DataAPI as Database API<br/>Upload Endpoint
participant ExcelReader as ExcelReader
participant PandasUtil as Pandas Utils
Note over PyProj: Dependency version: >=2.1.4, <2.2
PkgMgr->>PyProj: Read dependencies
PyProj->>PandasLib: Resolve pandas>=2.1.4
PkgMgr-->>PandasLib: Install pandas 2.1.4+
DataAPI->>ExcelReader: Initialize reader
ExcelReader->>PandasLib: pd.read_excel()
PandasLib-->>ExcelReader: Return DataFrame
ExcelReader->>PandasUtil: Apply column types
PandasUtil-->>DataAPI: Return processed data
```
Critical path: Package Manager->pyproject.toml->Pandas
Library->Database API Upload Endpoint->ExcelReader->Pandas Utils
> **Note:** Pandas dependency upgraded from 2.0.3 to 2.1.4+. This affects
Excel file processing, DataFrame utilities, and query context processing. The
upgrade enables compatibility with newer pandas features while maintaining
compatibility with pandas 2.1.x and 2.2.x versions.
</details>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]