File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
.github/actions/build-docs Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 8
8
runs :
9
9
using : ' composite'
10
10
steps :
11
- - name : Pretend this project requires Python 3.11
12
- shell : bash
13
- run : |
14
- # Poetry won't let me install sphinx as a dev dependency in this project
15
- # because of the wide range of versions our library supports. So during this
16
- # action, we'll pretend this project requires Python 3.11 or greater.
17
- sed -i 's/python = "^3.9"/python = "^3.11"/' pyproject.toml
18
-
19
11
- name : Setup Poetry
20
12
uses : ./.github/actions/setup-poetry
21
13
with :
24
16
include_asyncio : ' true'
25
17
python_version : ${{ inputs.python-version }}
26
18
19
+ - name : Pretend this project requires Python 3.11
20
+ shell : bash
21
+ run : |
22
+ # Poetry won't let me install sphinx as a dev dependency in this project
23
+ # because of the wide range of versions our library supports. So during this
24
+ # action, we'll pretend this project requires Python 3.11 or greater.
25
+ sed -i 's/python = "^3.9"/python = "^3.11"/' pyproject.toml
26
+ poetry lock --no-update
27
+ poetry install -E grpc -E asyncio
28
+
27
29
- name : Install sphinx
28
30
shell : bash
29
31
run : |
You can’t perform that action at this time.
0 commit comments