-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
requirements-dev.txt
75 lines (67 loc) · 1.22 KB
/
requirements-dev.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# 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
# ------------
# Interop
numpy
numba >= 0.54; python_version < '3.13' # Numba can lag Python releases
pandas
pyarrow
pydantic>=2.0.0
# Datetime / time zones
tzdata; platform_system == 'Windows'
# Database
sqlalchemy
adbc-driver-manager; platform_system != 'Windows'
adbc-driver-sqlite; platform_system != 'Windows'
aiosqlite
connectorx
kuzu
nest-asyncio
# Cloud
cloudpickle
fsspec
s3fs[boto3]
# Spreadsheet
fastexcel>=0.11.5
openpyxl
xlsx2csv
xlsxwriter
# Other I/O
deltalake>=0.15.0
# Csv
zstandard
# Plotting
altair>=5.4.0
# Styling
great-tables>=0.8.0
# Async
gevent
# Graph
matplotlib
# Testing
hypothesis
# -------
# TOOLING
# -------
pytest==8.3.2
pytest-codspeed==3.0.0
pytest-cov==6.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
google-auth-stubs