File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ concurrency:
13
13
cancel-in-progress : true
14
14
jobs :
15
15
build :
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04
17
17
environment :
18
18
name : github-pages
19
19
url : ${{ steps.deployment.outputs.page_url }}
23
23
- name : Install dependencies
24
24
run : |
25
25
sudo apt-get install python3-pip python3-setuptools python3-wheel --assume-yes --install-recommends
26
- sudo pip3 install -r requirements.txt .
26
+
27
+ - name : Create the Python virtual environment
28
+ run : |
29
+ python3 -mvenv venv
30
+ source ./venv/bin/activate
31
+ pip3 install --requirement requirements.txt .
27
32
28
33
- name : Build the docs site
29
34
run : |
Original file line number Diff line number Diff line change 5
5
- workflow_dispatch
6
6
jobs :
7
7
build :
8
- runs-on : ubuntu-latest
8
+ runs-on : ubuntu-24.04
9
9
steps :
10
10
- uses : actions/checkout@v4
11
11
12
12
- name : Install dependencies
13
13
run : |
14
14
sudo apt-get install python3-pip python3-setuptools python3-wheel --assume-yes --install-recommends
15
- sudo pip3 install -r requirements.txt .
15
+
16
+ - name : Create the Python virtual environment
17
+ run : |
18
+ python3 -mvenv venv
19
+ source ./venv/bin/activate
20
+ pip3 install --requirement requirements.txt .
16
21
17
22
- name : Check for broken redirects
18
23
run : ./tools/find-broken-redirects
Original file line number Diff line number Diff line change 4
4
* .pyc
5
5
build
6
6
dist
7
+ venv
7
8
site
8
9
9
10
! .git *
You can’t perform that action at this time.
0 commit comments