From 54cbe7bc3f31e2d116904c32f299612bb990b368 Mon Sep 17 00:00:00 2001 From: laughingman7743 Date: Mon, 23 Feb 2026 22:12:25 +0900 Subject: [PATCH] Add AioSQLAlchemy extra package to documentation Add the AioSQLAlchemy extra package entry to the installation tables in README.md and docs/introduction.md. Also fix the outdated Arrow version in docs/introduction.md (>=7.0.0 -> >=10.0.0) to match pyproject.toml. Co-Authored-By: Claude Opus 4.6 --- README.md | 13 +++++++------ docs/introduction.md | 13 +++++++------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4b1edf9f..c83f3902 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,13 @@ $ pip install PyAthena Extra packages: -| Package | Install command | Version | -|------------|--------------------------------------|----------| -| SQLAlchemy | `pip install PyAthena[SQLAlchemy]` | >=1.0.0 | -| Pandas | `pip install PyAthena[Pandas]` | >=1.3.0 | -| Arrow | `pip install PyAthena[Arrow]` | >=10.0.0 | -| Polars | `pip install PyAthena[Polars]` | >=1.0.0 | +| Package | Install command | Version | +|---------------|-----------------------------------------|----------| +| SQLAlchemy | `pip install PyAthena[SQLAlchemy]` | >=1.0.0 | +| AioSQLAlchemy | `pip install PyAthena[AioSQLAlchemy]` | >=2.0.0 | +| Pandas | `pip install PyAthena[Pandas]` | >=1.3.0 | +| Arrow | `pip install PyAthena[Arrow]` | >=10.0.0 | +| Polars | `pip install PyAthena[Polars]` | >=1.0.0 | ## Usage diff --git a/docs/introduction.md b/docs/introduction.md index eb497ae3..dc182192 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -20,12 +20,13 @@ $ pip install PyAthena Extra packages: -| Package | Install command | Version | -|------------|--------------------------------------|----------| -| SQLAlchemy | `pip install PyAthena[SQLAlchemy]` | >=1.0.0 | -| Pandas | `pip install PyAthena[Pandas]` | >=1.3.0 | -| Arrow | `pip install PyAthena[Arrow]` | >=7.0.0 | -| Polars | `pip install PyAthena[Polars]` | >=1.0.0 | +| Package | Install command | Version | +|---------------|-----------------------------------------|----------| +| SQLAlchemy | `pip install PyAthena[SQLAlchemy]` | >=1.0.0 | +| AioSQLAlchemy | `pip install PyAthena[AioSQLAlchemy]` | >=2.0.0 | +| Pandas | `pip install PyAthena[Pandas]` | >=1.3.0 | +| Arrow | `pip install PyAthena[Arrow]` | >=10.0.0 | +| Polars | `pip install PyAthena[Polars]` | >=1.0.0 | (features)=