Unverified Commit 415d13d9 authored by Fedor Batonogov's avatar Fedor Batonogov Committed by GitHub
Browse files

Release 3.1.5 (#26)

parent 67a400ce
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
---
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    hooks:
    -   id: check-yaml
    -   id: end-of-file-fixer
    -   id: trailing-whitespace
    -   id: check-added-large-files
    -   id: check-ast
    -   id: check-builtin-literals
    -   id: check-case-conflict
    -   id: check-docstring-first
    -   id: check-merge-conflict
    -   id: requirements-txt-fixer
    -   id: debug-statements
    -   id: detect-private-key

  - repo: https://github.com/psf/black
    rev: 23.7.0
    hooks:
      - id: black

  - repo: https://github.com/PyCQA/autoflake
    rev: v2.2.0
    hooks:
      - id: autoflake
+1 −1
Original line number Diff line number Diff line
FROM python:3.11.4
FROM python:3.11.5
SHELL ["/bin/bash", "-i", "-c"]

LABEL maintainer="f.batonogov@yandex.ru"
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ LABEL maintainer="f.batonogov@yandex.ru"
ENV DEBIAN_FRONTEND noninteractive

ARG WINE_VERSION=winehq-stable
ARG PYTHON_VERSION=3.11.4
ARG PYTHON_VERSION=3.11.5
ARG PYINSTALLER_VERSION=5.13.0

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

| TAG                    | Python version | Pyinstaller version |
| ---------------------- | -------------- | ------------------- |
| `:latest`/`:3.1.4`     | 3.11.4         | 5.13.0              |
| `:latest`/`:3.1.5`     | 3.11.5         | 5.13.0              |
| `:3.1.4`               | 3.11.4         | 5.13.0              |
| `:3.1.3`               | 3.11.4         | 5.12.0              |
| `:3.1.1`               | 3.11.3         | 5.11.0              |
| `:3.1.0`               | 3.11.3         | 5.9.0               |
+1 −1
Original line number Diff line number Diff line
import requests

get = requests.get('https://api.github.com')
get = requests.get("https://api.github.com")
print(get)
Loading