# 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

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

# Interoperability
numpy
numba; python_version < '3.13'  # Numba can lag Python releases
pandas
pyarrow
pydantic>=2.0.0
# 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
# Cloud
cloudpickle
fsspec
s3fs[boto3]
# Spreadsheet
lxml
fastexcel>=0.9
openpyxl
pyxlsb
xlsx2csv
XlsxWriter
deltalake>=0.15.0
# Csv
zstandard
# Plotting
hvplot>=0.9.1
matplotlib
# Other
gevent
nest_asyncio

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

hypothesis==6.100.4
pytest==8.2.0
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.0
flask
flask-cors

# Stub files
pandas-stubs
boto3-stubs
