# 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.

--prefer-binary

# -----
# 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'
# Cloud
cloudpickle
fsspec
s3fs[boto3]
# Spreadsheet
ezodf
lxml
openpyxl
pyxlsb
xlsx2csv
XlsxWriter
deltalake>=0.14.0
# Dataframe interchange protocol
dataframe-api-compat >= 0.1.6
pyiceberg >= 0.5.0
# Csv
zstandard
# Plotting
hvplot>=0.9.1
matplotlib
# Other
gevent

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

hypothesis==6.92.1
pytest==7.4.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]==4.2.2
flask
flask-cors

# Stub files
pandas-stubs
boto3-stubs
