forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
108 lines (93 loc) · 2.38 KB
/
environment.yml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: pandas-dev
channels:
- conda-forge
dependencies:
# required
- numpy>=1.15
- python=3.7
- python-dateutil>=2.6.1
- pytz
# benchmarks
- asv
# building
- cython>=0.29.13
# code checks
- black=19.10b0
- cpplint
- flake8
- flake8-comprehensions>=3.1.0 # used by flake8, linting of unnecessary comprehensions
- flake8-rst>=0.6.0,<=0.7.0 # linting of code blocks in rst files
- isort # check that imports are in the right order
- mypy=0.730
- pycodestyle # used by flake8
# documentation
- gitpython # obtain contributors from git for whatsnew
- gitdb2=2.0.6 # GH-32060
- sphinx
# documentation (jupyter notebooks)
- nbconvert>=5.4.1
- nbsphinx
- pandoc
# Dask and its dependencies (that dont install with dask)
- dask-core
- toolz>=0.7.3
- fsspec>=0.5.1
- partd>=0.3.10
- cloudpickle>=0.2.1
# web (jinja2 is also needed, but it's also an optional pandas dependency)
- markdown
- feedparser
- pyyaml
- requests
# testing
- boto3
- botocore>=1.11
- hypothesis>=3.82
- moto # mock S3
- pytest>=5.0.1
- pytest-cov
- pytest-xdist>=1.21
- pytest-asyncio
# downstream tests
- seaborn
- statsmodels
# unused (required indirectly may be?)
- ipywidgets
- nbformat
- notebook>=5.7.5
- pip
# optional
- blosc
- bottleneck>=1.2.1
- ipykernel
- ipython>=7.11.1
- jinja2 # pandas.Styler
- matplotlib>=2.2.2 # pandas.plotting, Series.plot, DataFrame.plot
- numexpr>=2.6.8
- scipy>=1.1
- numba>=0.46.0
# optional for io
# ---------------
# pd.read_html
- beautifulsoup4>=4.6.0
- html5lib
- lxml
# pd.read_excel, DataFrame.to_excel, pd.ExcelWriter, pd.ExcelFile
- openpyxl<=3.0.1
- xlrd
- xlsxwriter
- xlwt
- odfpy
- fastparquet>=0.3.2 # pandas.read_parquet, DataFrame.to_parquet
- pyarrow>=0.13.1 # pandas.read_parquet, DataFrame.to_parquet, pandas.read_feather, DataFrame.to_feather
- python-snappy # required by pyarrow
- pyqt>=5.9.2 # pandas.read_clipboard
- pytables>=3.4.2 # pandas.read_hdf, DataFrame.to_hdf
- s3fs # pandas.read_csv... when using 's3://...' path
- sqlalchemy # pandas.read_sql, DataFrame.to_sql
- xarray # DataFrame.to_xarray
- pyreadstat # pandas.read_spss
- tabulate>=0.8.3 # DataFrame.to_markdown
- pip:
- git+https://github.com/pandas-dev/pandas-sphinx-theme.git@master
- git+https://github.com/numpy/numpydoc