This repository was archived by the owner on Sep 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +16
-16
lines changed
Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1313# limitations under the License.
1414docker :
1515 image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16- digest : sha256:452901c74a22f9b9a3bd02bce780b8e8805c97270d424684bff809ce5be8c2a2
16+ digest : sha256:6244cdf9848ec661b48e5b626123ee9f6f8eb80adc9d42d7cd3c243d4ddaea79
Original file line number Diff line number Diff line change 1212 - name : Setup Python
1313 uses : actions/setup-python@v4
1414 with :
15- python-version : " 3.10 "
15+ python-version : " 3.9 "
1616 - name : Install nox
1717 run : |
1818 python -m pip install --upgrade setuptools pip wheel
2828 - name : Setup Python
2929 uses : actions/setup-python@v4
3030 with :
31- python-version : " 3.10 "
31+ python-version : " 3.9 "
3232 - name : Install nox
3333 run : |
3434 python -m pip install --upgrade setuptools pip wheel
Original file line number Diff line number Diff line change 1212 - name : Setup Python
1313 uses : actions/setup-python@v4
1414 with :
15- python-version : " 3.10 "
15+ python-version : " 3.8 "
1616 - name : Install nox
1717 run : |
1818 python -m pip install --upgrade setuptools pip wheel
Original file line number Diff line number Diff line change 4141 - name : Setup Python
4242 uses : actions/setup-python@v4
4343 with :
44- python-version : " 3.10 "
44+ python-version : " 3.8 "
4545 - name : Install coverage
4646 run : |
4747 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 \
6060 && rm -rf /var/lib/apt/lists/* \
6161 && rm -f /var/cache/apt/archives/*.deb
6262
63- # ##################### Install python 3.8.11
63+ # ##################### Install python 3.9.13
6464
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
6767
6868# Extract files
69- RUN tar -xvf Python-3.8.11 .tgz
69+ RUN tar -xvf Python-3.9.13 .tgz
7070
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
7373RUN make altinstall
7474
7575# ##################### Install pip
Original file line number Diff line number Diff line change @@ -94,9 +94,9 @@ charset-normalizer==2.1.1 \
9494 --hash =sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845 \
9595 --hash =sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f
9696 # via requests
97- click == 8.0.4 \
98- --hash =sha256:6a7a62563bbfabfda3a38f3023a1db4a35978c0abd76f6c9605ecd6554d6d9b1 \
99- --hash =sha256:8458d7b1287c5fb128c90e23381cf99dcde74beaf6c7ff6384ce84d6fe090adb
97+ click == 8.1.3 \
98+ --hash =sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e \
99+ --hash =sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48
100100 # via
101101 # gcp-docuploader
102102 # gcp-releasetool
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ def cover(session):
273273 session .run ("coverage" , "erase" )
274274
275275
276- @nox .session (python = DEFAULT_PYTHON_VERSION )
276+ @nox .session (python = "3.9" )
277277def docs (session ):
278278 """Build the docs for this library."""
279279
@@ -299,7 +299,7 @@ def docs(session):
299299 )
300300
301301
302- @nox .session (python = DEFAULT_PYTHON_VERSION )
302+ @nox .session (python = "3.9" )
303303def docfx (session ):
304304 """Build the docfx yaml files for this library."""
305305
You can’t perform that action at this time.
0 commit comments