Skip to content

Commit 3abf154

Browse files
committed
Another try for the github workflow
1 parent fb87814 commit 3abf154

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

.github/workflows/book.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ jobs:
1919
- uses: actions/checkout@v3
2020

2121
# Install dependencies
22-
# Install aad conda environment
23-
- uses: conda-incubator/setup-[email protected]
22+
- name: Set up Python 3.7
23+
uses: actions/setup-python@v4
2424
with:
25-
activate-environment: aad-book
26-
environment-file: book/environment.yml
27-
python-version: 3.7.12
28-
auto-activate-base: false
25+
python-version: 3.8
26+
27+
- name: Install dependencies
28+
run: |
29+
pip install -r book/requirements.txt
2930
3031
# Build the book
3132
- name: Build the book

book/requirements.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ matplotlib
22
numpy
33
numba
44
opencv-python
5-
jupyterlab
5+
#jupyterlab
66
ipywidgets
77
--extra-index-url https://download.pytorch.org/whl/cpu
88
torch
99
torchvision
1010
fastai
11-
albumentations
12-
tqdm
11+
#albumentations
12+
#tqdm
1313
fastseg
1414
pyclothoids
1515
jupyter-book==0.14.0
1616
sphinx-inline-tabs
17-
pygame
18-
imageio
19-
imageio-ffmpeg
17+
sphinx==4.3.2
18+
#pygame
19+
#imageio
20+
#imageio-ffmpeg

0 commit comments

Comments
 (0)