forked from Eventual-Inc/Daft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements-dev.txt
61 lines (52 loc) · 1.52 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
# Development/Build utilities (allow to be unpinned)
ipdb
maturin
pre-commit
docker
# Tracing
orjson==3.9.5 # orjson recommended for viztracer
py-spy==0.3.14
viztracer==0.15.6
# Testing frameworks
hypothesis==6.79.2
pytest==7.4.1
pytest-benchmark==4.0.0
pytest-cov==4.1.0
# Testing dependencies
lxml==4.9.3
dask==2022.2.0; python_version < '3.8'
dask==2023.5.0; python_version == '3.8'
dask==2023.6.0; python_version >= '3.9'
numpy; python_version < '3.9'
numpy==1.25.2; python_version >= '3.9'
pandas==1.3.5; python_version < '3.8'
pandas==2.0.3; python_version >= '3.8'
xxhash>=3.0.0
Pillow==9.5.0
opencv-python==4.8.0.76
# Pyarrow
pyarrow==12; platform_system != "Windows"
pyarrow==6.0.1; platform_system === "Windows"
# Ray
ray[data, default]==2.6.3
pydantic<2 # pin pydantic because Ray uses broken APIs
# AWS
s3fs==2023.1.0; python_version < '3.8'
s3fs==2023.6.0; python_version >= '3.8'
# on old versions of s3fs's pinned botocore, they neglected to pin urllib3<2 which leads to:
# "ImportError: cannot import name 'DEFAULT_CIPHERS' from 'urllib3.util.ssl_'"
urllib3<2; python_version < '3.8'
# Azure
adlfs==2022.2.0; python_version < '3.8'
adlfs==2023.8.0; python_version >= '3.8'
# Workaround until the next version of adlfs: https://github.com/fsspec/adlfs/issues/424
azure-storage-blob==12.17.0; python_version >= '3.8'
# GCS
gcsfs==2023.1.0; python_version < '3.8'
gcsfs==2023.6.0; python_version >= '3.8'
# Documentation
myst-nb>=0.16.0
Sphinx <= 5
sphinx-book-theme>=0.3.3,<1.0.0
sphinx-reredirects>=0.1.1
sphinx-copybutton>=0.5.2