File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -17,21 +17,18 @@ jobs:
1717 env :
1818 GH_PAT : ${{secrets.GH_PAT}}
1919 steps :
20-
2120 - uses : actions/checkout@v2
22-
23- - uses : conda-incubator /setup-miniconda @v2.0.0
21+ - name : Set up Python 3.8
22+ uses : actions /setup-python @v2
2423 with :
25- miniconda-version : " latest"
26- activate-environment : compas-dev
27- channels : conda-forge
2824 python-version : 3.8
29-
25+ - name : Install dependencies
26+ run : |
27+ python -m pip install --upgrade pip
28+ python -m pip install cython --install-option="--no-cython-compile"
3029 - name : Install
3130 run : |
32- conda install cython graphviz
33- python -m pip install -r requirements-dev.txt
34-
31+ python -m pip install --no-cache-dir -r requirements-dev.txt
3532 - name : Generate docs
3633 if : ${{ success() }}
3734 run : |
You can’t perform that action at this time.
0 commit comments