Skip to content

Commit d1055df

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 d1055df

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.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_bin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pip install poetry
1212
poetry install -E qt
1313

1414
# We also need to change the timestamps of all of the base library files
15-
lib_dir=`pyenv root`/versions/3.6.12/lib/python3.6
15+
lib_dir=`pyenv root`/versions/3.9.7/lib/python3.9
1616
TZ=UTC find ${lib_dir} -name '*.py' -type f -execdir touch -t "201901010000.00" '{}' \;
1717

1818
# Make the standalone binary

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)