File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,14 @@ jobs:
4343 bump :
4444 needs : test
4545 runs-on : ubuntu-latest
46+ permissions :
47+ contents : write
4648 steps :
47- - uses : actions/checkout@v2
49+ - uses : actions/checkout@v3
4850 with :
4951 fetch-depth : ' 0'
5052 - name : Bump version and push tag
51- uses : anothrNick/github-tag-action@1.36 .0
53+ uses : anothrNick/github-tag-action@1.64 .0
5254 env :
5355 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5456 WITH_V : true
Original file line number Diff line number Diff line change @@ -19,3 +19,5 @@ sphinx-rtd-theme = "0.5.2"
1919
2020[extras ]
2121ray = " *"
22+ shap = " *"
23+ xarray = " *"
Original file line number Diff line number Diff line change @@ -106,6 +106,15 @@ HiClass and its dependencies can be easily installed with pip:
106106pip install hiclass
107107```
108108
109+ If you need additional functionality, you can install extra dependencies using the following syntax:
110+ ``` shell
111+ pip install hiclass" [<extra_name>]"
112+ ```
113+ Replace <extra_name> with one of the following options:
114+
115+ - ray: Installs the ray package, which is required for parallel processing support.
116+ - xai: Installs the shap and xarray packages, which are required for explaining Hiclass predictions.
117+
109118### Option 2: Conda
110119
111120Alternatively, HiClass and its dependencies can also be installed with conda:
Original file line number Diff line number Diff line change 3131
3232# What packages are optional?
3333# 'fancy feature': ['django'],}
34- EXTRAS = {"ray" : ["ray>=1.11.0" ]}
34+ EXTRAS = {"ray" : ["ray>=1.11.0" ], "xai" : [ "shap" , "xarray" ] }
3535
3636# The rest you shouldn't have to touch too much :)
3737# ------------------------------------------------
You can’t perform that action at this time.
0 commit comments