Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/py-polars/requirements-dev.txt
8420 views
1
# We're pinning our tooling, because it's an environment we can strictly control.
2
# We're not pinning package dependencies, because our tests need to pass with the
3
# latest version of the packages.
4
5
# -----
6
# BUILD
7
# -----
8
9
maturin
10
# extra dependency for maturin (linux-only)
11
patchelf; platform_system == 'Linux'
12
pip
13
14
# ------------
15
# DEPENDENCIES
16
# ------------
17
18
polars-cloud
19
# Interop
20
numba >= 0.54
21
numpy
22
pandas
23
pyarrow
24
pydantic>=2.0.0
25
# Datetime / time zones
26
tzdata; platform_system == 'Windows'
27
pytz
28
# Database
29
sqlalchemy
30
adbc-driver-manager; platform_system != 'Windows'
31
adbc-driver-sqlite; platform_system != 'Windows'
32
aiosqlite
33
connectorx>=0.4.5
34
# Cloud
35
azure-identity
36
boto3
37
cloudpickle
38
fsspec
39
pyiceberg>=0.7.1; python_version < '3.13'
40
s3fs>=2026.2.0
41
# Spreadsheet
42
fastexcel>=0.11.5
43
openpyxl
44
xlsx2csv
45
xlsxwriter>=3.2.9
46
# Other I/O
47
deltalake>=1.1.4
48
# Csv
49
zstandard
50
# Plotting
51
altair>=5.4.0
52
# Styling
53
great-tables>=0.8.0
54
# Async
55
gevent
56
# Graph
57
matplotlib
58
# Testing
59
hypothesis
60
# Miscellaneous
61
orjson
62
63
# -------
64
# TOOLING
65
# -------
66
67
pytest==8.3.2
68
pytest-codspeed==3.2.0
69
pytest-cov==6.0.0
70
pytest-xdist==3.6.1
71
72
# Need moto.server to mock s3fs - see: https://github.com/aio-libs/aiobotocore/issues/755
73
moto[s3]==5.0.9
74
flask
75
flask-cors
76
77
# Stub files
78
pandas-stubs
79
boto3-stubs
80
google-auth-stubs
81
82