# We're pinning our tooling, because it's an environment we can strictly control.
# We're not pinning package dependencies, because our tests need to pass with the
# latest version of the packages.

# -----
# BUILD
# -----

maturin
# extra dependency for maturin (linux-only)
patchelf; platform_system == 'Linux'
pip
# Temporarily pinned to fix CI
setuptools==70.3.0

# ------------
# DEPENDENCIES
# ------------

# Interop
numpy
numba; python_version < '3.13'  # Numba can lag Python releases
pandas
pyarrow
pydantic>=2.0.0
numba
# Datetime / time zones
backports.zoneinfo; python_version < '3.9'
tzdata; platform_system == 'Windows'
# Database
sqlalchemy
adbc-driver-manager; python_version >= '3.9' and platform_system != 'Windows'
adbc-driver-sqlite; python_version >= '3.9' and platform_system != 'Windows'
aiosqlite
connectorx
kuzu
nest-asyncio
# Cloud
cloudpickle
fsspec
s3fs[boto3]
# Spreadsheet
fastexcel>=0.9
openpyxl
xlsx2csv
xlsxwriter
# Other I/O
deltalake>=0.15.0
# Csv
zstandard
# Plotting
hvplot>=0.9.1
# Styling
great-tables>=0.8.0; python_version >= '3.9'
# Async
gevent
# Graph
matplotlib
# Testing
hypothesis

# -------
# TOOLING
# -------

pytest==8.2.2
pytest-codspeed==2.2.1
pytest-cov==5.0.0
pytest-xdist==3.6.1

# Need moto.server to mock s3fs - see: https://github.com/aio-libs/aiobotocore/issues/755
moto[s3]==5.0.9
flask
flask-cors

# Stub files
pandas-stubs
boto3-stubs
