# 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
patchelf; platform_system == 'Linux'  # Extra dependency for maturin, only for Linux

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

# Interoperability
numpy
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'
# TODO: Remove version constraint for connectorx when Python 3.12 is supported:
# https://github.com/sfu-db/connector-x/issues/527
connectorx; python_version <= '3.11'
kuzu
# Cloud
cloudpickle
fsspec
s3fs[boto3]
# Spreadsheet
ezodf
lxml
fastexcel>=0.8.0
openpyxl
pyxlsb
xlsx2csv
XlsxWriter
deltalake>=0.14.0
pyiceberg>=0.5.0
# Csv
zstandard
# Plotting
hvplot>=0.9.1
matplotlib
# Other
gevent

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

hypothesis==6.97.4
pytest==8.0.0
pytest-cov==4.1.0
pytest-xdist==3.5.0

# 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
