Skip to content

Commit 576df23

Browse files
committed
Bump PyEnv version to 3.9.7
HWI is compatible with Python 3.9. Although 3.9.8 has been released, the most recent version of Python shipped with PyEnv on homebrew (macOS) is 3.9.7 In order to test backwareds compatibility, the version is not changed elsewhere.
1 parent 4edf4f6 commit 576df23

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.cirrus.yml

+1
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ dist_builder_task:
214214
container:
215215
dockerfile: contrib/build.Dockerfile
216216
build_script:
217+
- pyenv install 3.9.7
217218
- contrib/build_bin.sh
218219
- contrib/build_dist.sh
219220
- find dist -type f -exec sha256sum {} \;

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.12
1+
3.9.7

contrib/build.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ COPY contrib/reproducible-python.diff /opt/reproducible-python.diff
3939
ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
4040
ENV BUILD_DATE="Jan 1 2019"
4141
ENV BUILD_TIME="00:00:00"
42-
RUN eval "$(pyenv init --path)" && eval "$(pyenv virtualenv-init -)" && cat /opt/reproducible-python.diff | pyenv install -kp 3.6.12
42+
RUN eval "$(pyenv init --path)" && eval "$(pyenv virtualenv-init -)" && cat /opt/reproducible-python.diff | pyenv install -kp 3.9.7
4343

4444
RUN dpkg --add-architecture i386
4545
RUN wget -nc https://dl.winehq.org/wine-builds/winehq.key

contrib/build_wine.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
set -ex
55

6-
# No Windows installer for 3.6.12
7-
PYTHON_VERSION=3.6.8
6+
PYTHON_VERSION=3.9.7
87

98
PYTHON_FOLDER="python3"
109
PYHOME="c:/$PYTHON_FOLDER"

0 commit comments

Comments
 (0)