-
Notifications
You must be signed in to change notification settings - Fork 15
/
Pipfile
36 lines (33 loc) · 1.03 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pylint = "*"
autopep8 = "*"
ipykernel = "*"
[packages]
src = {editable = true, path = "./"}
numpy = "*" # ideally should be "==1.15.1", as per diskprediction_local upstream requirements.txt, but dask-ml requires >=1.17. so need to change to "*" for dev purpose
scipy = "*" # ideally should be "==1.1.0", as per diskprediction_local upstream requirements.txt, but umap-learn requires >=1.2.0 so need to change to "*" for dev purpose
pandas = "*"
matplotlib = "*"
seaborn = "*"
plotly = "*"
joblib = "*"
scikit-learn = "*" # ideally should be "==1.19.2", as per diskprediction_local upstream requirements.txt, but dask-ml requires >=0.21 so need to change to "*" for dev purpose
umap-learn = "*"
xgboost = "*"
s3fs = "*"
partd = "*"
pyarrow = "*"
dask = "*"
distributed = "*"
dask-ml = "*"
dask-xgboost = "*"
mlflow = "*"
fbprophet = "*"
tqdm = "*"
statsmodels = "*"
[requires]
python_version = "3.6"