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
5 changes: 2 additions & 3 deletions .12factor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
#
# Stage 0) Arg defaults and base image
#
ARG POETRY_VERSION=1.4.2
ARG POETRY_VERSION=2.3.4
ARG VENV_PATH="/tmp/venv"
ARG APP_HOME="/home/app"
ARG PACKAGE_GROUPS="main"

FROM mdsol-docker-prod-virtual.jfrog.io/mdsol/python310:2023.4.10182043 as python_base

FROM mdsol-docker-prod-virtual.jfrog.io/mdsol/python313:latest AS python_base
#
# Stage 1.A) Get helper scripts (not currently used)
#
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pip install dataconnect # core (pyarrow + pydantic + httpx)
pip install dataconnect[pandas] # + pandas for .to_pandas() on results
```

Requires **Python ≥ 3.10**.
Requires **Python ≥ 3.13**.

---

Expand Down
3 changes: 1 addition & 2 deletions dataconnect/framework/pyarrow_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
import pyarrow as pa
from pyarrow import flight

from dataconnect import AuthenticationError, DataConnectError
from dataconnect.auth import BearerTokenAuth, Credentials
from dataconnect.exceptions import QueryError
from dataconnect.exceptions import AuthenticationError, DataConnectError, QueryError
from dataconnect.framework.transport import FlightTransport, RecordBatchStream


Expand Down
Loading
Loading