mirror of
https://github.com/hassio-addons/addon-base-python.git
synced 2025-05-07 04:41:24 +00:00
Compare commits
42 commits
Author | SHA1 | Date | |
---|---|---|---|
|
13e5e8dc9c | ||
|
8a97fe04d5 | ||
|
26fddf1d25 | ||
|
47297df0e1 | ||
|
9d6b8ce1e9 | ||
|
d5f7733bf3 | ||
|
06bd1f4307 | ||
|
8fb98c6d30 | ||
|
2d74c4c330 | ||
|
3af02d38c3 | ||
|
cccbc5fc14 | ||
|
d06a027d01 | ||
|
e8c97781ea | ||
|
ac50b86d1f | ||
|
ce29f90769 | ||
|
6370328d5f | ||
|
c0b0696d00 | ||
|
98c4824655 | ||
|
46cdab3ecc | ||
|
8114c33db7 | ||
|
204fa67274 | ||
|
5fa53155c6 | ||
|
1018b96ba5 | ||
|
f9915b72e1 | ||
|
36b50b9a11 | ||
|
6027943221 | ||
|
40c9a915bf | ||
|
713bfa008c | ||
|
5ebdb6b3ef | ||
|
b8d4de18b0 | ||
|
3794a87ce9 | ||
|
3cd26f5474 | ||
|
5387431db8 | ||
|
051b2c2c94 | ||
|
71c024eb88 | ||
|
1bc5b446d5 | ||
|
7225e9699f | ||
|
e1605804ff | ||
|
65b4a5a8e5 | ||
|
d17153eb75 | ||
|
4719d565f1 | ||
|
b5922827a2 |
5 changed files with 42 additions and 37 deletions
9
.github/renovate.json
vendored
9
.github/renovate.json
vendored
|
@ -5,8 +5,9 @@
|
|||
"labels": ["dependencies", "no-stale"],
|
||||
"commitMessagePrefix": "⬆️",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"regexManagers": [
|
||||
"customManagers": [
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$", "/build.yaml$"],
|
||||
"matchStringsStrategy": "any",
|
||||
"matchStrings": [
|
||||
|
@ -16,6 +17,7 @@
|
|||
"datasourceTemplate": "docker"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStringsStrategy": "any",
|
||||
"matchStrings": [
|
||||
|
@ -23,9 +25,10 @@
|
|||
],
|
||||
"versioningTemplate": "loose",
|
||||
"datasourceTemplate": "repology",
|
||||
"depNameTemplate": "alpine_3_20/{{package}}"
|
||||
"depNameTemplate": "alpine_3_21/{{package}}"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStrings": [
|
||||
"ARG PYTHON_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
|
||||
|
@ -34,6 +37,7 @@
|
|||
"depNameTemplate": "python/cpython"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStrings": [
|
||||
"ARG PYTHON_SETUPTOOLS_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
|
||||
|
@ -42,6 +46,7 @@
|
|||
"depNameTemplate": "setuptools"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStrings": [
|
||||
"ARG PYTHON_PIP_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# MIT License
|
||||
|
||||
Copyright (c) 2019-2024 Franck Nijhof
|
||||
Copyright (c) 2019-2025 Franck Nijhof
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -92,7 +92,7 @@ our [GitHub Repository][repository].
|
|||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019-2024 Franck Nijhof
|
||||
Copyright (c) 2019-2025 Franck Nijhof
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -134,7 +134,7 @@ SOFTWARE.
|
|||
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
|
||||
[label-schema]: http://label-schema.org/
|
||||
[license-shield]: https://img.shields.io/github/license/hassio-addons/addon-base-python.svg
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg
|
||||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||
[patreon]: https://www.patreon.com/frenck
|
||||
[project-stage-shield]: https://img.shields.io/badge/Project%20Stage-Production%20Ready-brightgreen.svg
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
ARG BUILD_FROM=ghcr.io/hassio-addons/base:16.3.4
|
||||
ARG BUILD_FROM=ghcr.io/hassio-addons/base:17.2.3
|
||||
# hadolint ignore=DL3006
|
||||
FROM ${BUILD_FROM}
|
||||
|
||||
|
@ -11,39 +11,39 @@ ENV \
|
|||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
# Install base system
|
||||
ARG PYTHON_VERSION="v3.13.0"
|
||||
ARG PYTHON_PIP_VERSION="24.2"
|
||||
ARG PYTHON_SETUPTOOLS_VERSION="75.2.0"
|
||||
ARG PYTHON_VERSION="v3.13.2"
|
||||
ARG PYTHON_PIP_VERSION="25.0.1"
|
||||
ARG PYTHON_SETUPTOOLS_VERSION="78.1.0"
|
||||
# hadolint ignore=DL3003,DL4006,SC2155
|
||||
RUN \
|
||||
apk add --no-cache --virtual .build-dependencies \
|
||||
bzip2-dev=1.0.8-r6 \
|
||||
dpkg-dev=1.22.6-r1 \
|
||||
dpkg=1.22.6-r1 \
|
||||
expat-dev=2.6.3-r0 \
|
||||
findutils=4.9.0-r5 \
|
||||
gcc=13.2.1_git20240309-r0 \
|
||||
gdbm-dev=1.23-r1 \
|
||||
gnupg=2.4.5-r0 \
|
||||
libffi-dev=3.4.6-r0 \
|
||||
dpkg-dev=1.22.11-r0\
|
||||
dpkg=1.22.11-r0 \
|
||||
expat-dev=2.7.0-r0 \
|
||||
findutils=4.10.0-r0 \
|
||||
gcc=14.2.0-r4\
|
||||
gdbm-dev=1.24-r0 \
|
||||
gnupg=2.4.7-r0\
|
||||
libffi-dev=3.4.7-r0 \
|
||||
libnsl-dev=2.0.1-r0 \
|
||||
libtirpc-dev=1.3.4-r0 \
|
||||
linux-headers=6.6-r0 \
|
||||
libtirpc-dev=1.3.5-r0 \
|
||||
linux-headers=6.6-r1 \
|
||||
make=4.4.1-r2 \
|
||||
musl-dev=1.2.5-r0 \
|
||||
ncurses-dev=6.4_p20240420-r1 \
|
||||
openssl-dev=3.3.2-r1 \
|
||||
pax-utils=1.3.7-r2 \
|
||||
readline-dev=8.2.10-r0 \
|
||||
sqlite-dev=3.45.3-r1 \
|
||||
musl-dev=1.2.5-r9 \
|
||||
ncurses-dev=6.5_p20241006-r3 \
|
||||
openssl-dev=3.3.3-r0 \
|
||||
pax-utils=1.3.8-r1\
|
||||
readline-dev=8.2.13-r0 \
|
||||
sqlite-dev=3.48.0-r1 \
|
||||
tar=1.35-r2 \
|
||||
tcl-dev=8.6.14-r1 \
|
||||
tk-dev=8.6.14-r0 \
|
||||
tk=8.6.14-r0 \
|
||||
util-linux-dev=2.40.1-r1 \
|
||||
xz-dev=5.6.2-r0 \
|
||||
xz=5.6.2-r0 \
|
||||
zlib-dev=1.3.1-r1 \
|
||||
tcl-dev=8.6.15-r0 \
|
||||
tk-dev=8.6.15-r0\
|
||||
tk=8.6.15-r0 \
|
||||
util-linux-dev=2.40.4-r1 \
|
||||
xz-dev=5.6.3-r1 \
|
||||
xz=5.6.3-r0\
|
||||
zlib-dev=1.3.1-r2 \
|
||||
\
|
||||
&& curl -J -L -o /tmp/python.tar.xz \
|
||||
"https://www.python.org/ftp/python/${PYTHON_VERSION#v}/Python-${PYTHON_VERSION#v}.tar.xz" \
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
build_from:
|
||||
aarch64: ghcr.io/hassio-addons/base:16.3.4
|
||||
amd64: ghcr.io/hassio-addons/base:16.3.4
|
||||
armhf: ghcr.io/hassio-addons/base:16.3.4
|
||||
armv7: ghcr.io/hassio-addons/base:16.3.4
|
||||
i386: ghcr.io/hassio-addons/base:16.3.4
|
||||
aarch64: ghcr.io/hassio-addons/base:17.2.3
|
||||
amd64: ghcr.io/hassio-addons/base:17.2.3
|
||||
armhf: ghcr.io/hassio-addons/base:17.2.3
|
||||
armv7: ghcr.io/hassio-addons/base:17.2.3
|
||||
i386: ghcr.io/hassio-addons/base:17.2.3
|
||||
codenotary:
|
||||
signer: codenotary@frenck.dev
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue