Compare commits

..

4 Commits

Author SHA1 Message Date
Stefan Allius
e41c5c97e9 use python 3.14 in github action 2025-10-09 23:27:20 +02:00
Stefan Allius
eae4e0c521 Merge branch 'main' of https://github.com/s-allius/tsun-gen3-proxy into renovate/python-3.x 2025-10-09 23:24:26 +02:00
Stefan Allius
5444853fce bump to py version 3.14 2025-10-09 19:34:46 +02:00
renovate[bot]
db7d587d93 Update python Docker tag 2025-10-08 02:10:26 +00:00
3 changed files with 4 additions and 3 deletions

View File

@@ -37,10 +37,10 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip

View File

@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [unreleased]
- use python 3.14 in github action
- Update ghcr.io/hassio-addons/base Docker tag to v18.1.4
- Update dependency pytest-asyncio to v1.1.0
- save task references, to avoid a task disappearing mid-execution

View File

@@ -13,7 +13,7 @@
# 1 Build Base Image #
######################
ARG BUILD_FROM="ghcr.io/hassio-addons/base:19.0.0"
ARG BUILD_FROM="ghcr.io/hassio-addons/base:18.1.4"
# hadolint ignore=DL3006
FROM $BUILD_FROM AS base