File tree Expand file tree Collapse file tree 5 files changed +178
-152
lines changed
Expand file tree Collapse file tree 5 files changed +178
-152
lines changed Original file line number Diff line number Diff line change 44# you may not use this file except in compliance with the License.
55# You may obtain a copy of the License at
66#
7- # http://www.apache.org/licenses/LICENSE-2.0
7+ # http://www.apache.org/licenses/LICENSE-2.0
88#
99# Unless required by applicable law or agreed to in writing, software
1010# distributed under the License is distributed on an "AS IS" BASIS,
1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14-
1514docker :
1615 image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
17- digest : sha256:bc5eed3804aec2f05fad42aacf973821d9500c174015341f721a984a0825b6fd
16+ digest : sha256:3bf87e47c2173d7eed42714589dc4da2c07c3268610f1e47f8e1a30decbfc7f1
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.13
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 1616set -eo pipefail
1717
1818# Start the releasetool reporter
19- python3 -m pip install gcp-releasetool
19+ python3 -m pip install --require-hashes -r github/gapic-generator-python/.kokoro/requirements.txt
2020python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script
2121
22- # Ensure that we have the latest versions of Twine, Wheel, and Setuptools.
23- python3 -m pip install --upgrade twine wheel setuptools
24-
2522# Disable buffering, so that the logs stream through.
2623export PYTHONUNBUFFERED=1
2724
Original file line number Diff line number Diff line change @@ -5,4 +5,6 @@ typing-extensions
55twine
66wheel
77setuptools
8- nox
8+ nox
9+ charset-normalizer<3
10+ click<8.1.0
You can’t perform that action at this time.
0 commit comments