Unverified Commit 3b87be8e authored by Fedor Batonogov's avatar Fedor Batonogov Committed by GitHub
Browse files

Release 3.1.2 (#20)

Updated Pyintaller 5.11.0 -> 5.12.0
Updated Python 3.11.3 -> 3.11.4
parent 4e7ebfa7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
FROM python:3.11.3
FROM python:3.11.4
SHELL ["/bin/bash", "-i", "-c"]

LABEL maintainer="f.batonogov@yandex.ru"

ARG PYINSTALLER_VERSION=5.11.0
ARG PYINSTALLER_VERSION=5.12.0

ENV PYPI_URL=https://pypi.python.org/
ENV PYPI_INDEX_URL=https://pypi.python.org/simple
+2 −2
Original line number Diff line number Diff line
@@ -5,8 +5,8 @@ LABEL maintainer="f.batonogov@yandex.ru"
ENV DEBIAN_FRONTEND noninteractive

ARG WINE_VERSION=winehq-stable
ARG PYTHON_VERSION=3.11.3
ARG PYINSTALLER_VERSION=5.11.0
ARG PYTHON_VERSION=3.11.4
ARG PYINSTALLER_VERSION=5.12.0

# we need wine for this all to work, so we'll use the PPA
RUN set -x \
+3 −2
Original line number Diff line number Diff line
@@ -8,7 +8,8 @@

| TAG                    | Python version | Pyinstaller version |
| ---------------------- | -------------- | ------------------- |
| `:latest`/`:3.1.1`     | 3.11.3         | 5.11.0              |
| `:latest`/`:3.1.2`     | 3.11.4         | 5.12.0              |
| `:3.1.1`               | 3.11.3         | 5.11.0              |
| `:3.1.0`               | 3.11.3         | 5.9.0               |
| `:python-3.11`/`:3.0.2`| 3.11.2         | 5.8.0               |
| `:3.0.1`               | 3.11.1         | 5.7.0               |
@@ -56,7 +57,7 @@ will generate a `spec` file for `your-script.py` in your current working directo

### How do I change the PyInstaller version used?

Add `pyinstaller==5.8.0` to your `requirements.txt`.
Add `pyinstaller==5.11.0` to your `requirements.txt`.

### Is it possible to use a package mirror?