File tree 3 files changed +26
-6
lines changed
3 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,12 @@ jobs:
22
22
with :
23
23
auto-update-conda : true
24
24
miniforge-variant : Mambaforge
25
- channels : conda-forge
26
- activate-environment : pyjanitor-dev
27
- environment-file : environment-dev.yml
25
+ environment-file : mkdocs/environment.yaml
28
26
use-mamba : true
29
27
30
28
- name : Build docs
31
29
run : |
32
- conda activate pyjanitor-dev
33
- python -m ipykernel install --user --name pyjanitor-dev
34
- pip install -e .
30
+ pip install .
35
31
mkdocs build
36
32
37
33
- name : Deploy docs preview to Netlify
Original file line number Diff line number Diff line change 16
16
- [ ENH] ` dropna ` parameter added to ` pivot_longer ` . Issue #1132 @samukweku
17
17
- [ INF] Update ` mkdocstrings ` version and to fit its new coming features. PR #1138 @Zeroto521
18
18
- [ BUG] Force ` math.softmax ` returning ` Series ` . PR #1139 @Zeroto521
19
+ - [ INF] Set independent environment for building documentation. PR #1141 @Zeroto521
19
20
20
21
## [ v0.23.1] - 2022-05-03
21
22
Original file line number Diff line number Diff line change
1
+ name : pyjanitor-doc
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - python
6
+ # required
7
+ - pandas
8
+ - pandas-flavor
9
+ - multipledispatch
10
+ - scipy
11
+ # optional
12
+ - biopython
13
+ - natsort
14
+ - pyspark>=3.2.0
15
+ - rdkit
16
+ - tqdm
17
+ - unyt
18
+ - xarray
19
+ - numba
20
+ # doc
21
+ - mkdocs
22
+ - mkdocs-material
23
+ - mkdocstrings-python
You can’t perform that action at this time.
0 commit comments