Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pyccel/IGA-Python
Browse files Browse the repository at this point in the history
  • Loading branch information
ratnania committed Feb 24, 2024
2 parents 888a479 + 35fea24 commit 2cb3a70
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/deploy-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,23 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.9'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt-get install gfortran
sudo apt-get install openmpi-bin libopenmpi-dev
sudo apt-get install libhdf5-openmpi-dev
git clone https://github.com/pyccel/psydac.git
cd psydac
python -m pip install -r requirements.txt
python -m pip install -r requirements_extra.txt --no-build-isolation
pip install .
pip install jupyter-book ghp-import sphinx_proof
python -m ipykernel install --user --name .iga-python --display-name "IGA-Python"
python -m ipykernel install --user --name v_psydac --display-name "Python (v_psydac)"
- name: Build Jupyter Book
run: jupyter-book build .
Expand Down

0 comments on commit 2cb3a70

Please sign in to comment.