Skip to content

Commit

Permalink
Pyinstaller 6.9.0 (#95)
Browse files Browse the repository at this point in the history
* Pyinstaller 6.9.0

* legacy ENV format

---------

Co-authored-by: Fedor Batonogov <[email protected]>
  • Loading branch information
github-actions[bot] and batonogov authored Jul 8, 2024
1 parent 604d6be commit 7d815f2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repos:
args: [--autofix, --indent, '2', --offset, '2']

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.2
rev: v3.16.0
hooks:
- id: pyupgrade
args: [--py312-plus] # Указание минимальной версии Python для обновления синтаксиса
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-py3-linux
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"]

LABEL maintainer="[email protected]"

ARG PYINSTALLER_VERSION=6.8.0
ARG PYINSTALLER_VERSION=6.9.0

ENV PYPI_URL=https://pypi.python.org/
ENV PYPI_INDEX_URL=https://pypi.python.org/simple
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-py3-linux-slim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"]

LABEL maintainer="[email protected]"

ARG PYINSTALLER_VERSION=6.8.0
ARG PYINSTALLER_VERSION=6.9.0

ENV PYPI_URL=https://pypi.python.org/
ENV PYPI_INDEX_URL=https://pypi.python.org/simple
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-py3-osx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"]

LABEL maintainer="[email protected]"

ARG PYINSTALLER_VERSION=6.8.0
ARG PYINSTALLER_VERSION=6.9.0

ENV PYPI_URL=https://pypi.python.org/
ENV PYPI_INDEX_URL=https://pypi.python.org/simple
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile-py3-windows
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ FROM ubuntu:24.04

LABEL maintainer="[email protected]"

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

ARG WINE_VERSION=winehq-devel
ARG PYTHON_VERSION=3.12.4
ARG PYINSTALLER_VERSION=6.8.0
ARG PYINSTALLER_VERSION=6.9.0

# we need wine for this all to work, so we'll use the PPA
RUN set -x \
Expand Down Expand Up @@ -35,9 +35,9 @@ RUN set -x \
&& mv winetricks /usr/local/bin

# wine settings
ENV WINEARCH win64
ENV WINEDEBUG fixme-all
ENV WINEPREFIX /wine
ENV WINEARCH=win64
ENV WINEDEBUG=fixme-all
ENV WINEPREFIX=/wine

# PYPI repository location
ENV PYPI_URL=https://pypi.python.org/
Expand Down

0 comments on commit 7d815f2

Please sign in to comment.