File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
synthtool/gcp/templates/python_library Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 12
12
- name : Setup Python
13
13
uses : actions/setup-python@v4
14
14
with :
15
- python-version : " {{ default_python_version }} "
15
+ python-version : " 3.9 "
16
16
- name : Install nox
17
17
run : |
18
18
python -m pip install --upgrade setuptools pip wheel
28
28
- name : Setup Python
29
29
uses : actions/setup-python@v4
30
30
with :
31
- python-version : " {{ default_python_version }} "
31
+ python-version : " 3.9 "
32
32
- name : Install nox
33
33
run : |
34
34
python -m pip install --upgrade setuptools pip wheel
Original file line number Diff line number Diff line change @@ -60,16 +60,16 @@ RUN apt-get update \
60
60
&& rm -rf /var/lib/apt/lists/* \
61
61
&& rm -f /var/cache/apt/archives/*.deb
62
62
63
- # ##################### Install python 3.8.11
63
+ # ##################### Install python 3.9.13
64
64
65
- # Download python 3.8.11
66
- RUN wget https://www.python.org/ftp/python/3.8.11 /Python-3.8.11 .tgz
65
+ # Download python 3.9.13
66
+ RUN wget https://www.python.org/ftp/python/3.9.13 /Python-3.9.13 .tgz
67
67
68
68
# Extract files
69
- RUN tar -xvf Python-3.8.11 .tgz
69
+ RUN tar -xvf Python-3.9.13 .tgz
70
70
71
- # Install python 3.8 .11
72
- RUN ./Python-3.8.11 /configure --enable-optimizations
71
+ # Install python 3.9 .11
72
+ RUN ./Python-3.9.13 /configure --enable-optimizations
73
73
RUN make altinstall
74
74
75
75
# ##################### Install pip
Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ def cover(session):
340
340
session.run("coverage", "erase")
341
341
342
342
343
- @nox.session(python=DEFAULT_PYTHON_VERSION )
343
+ @nox.session(python="3.9" )
344
344
def docs(session):
345
345
"""Build the docs for this library."""
346
346
You can’t perform that action at this time.
0 commit comments