Skip to content

Commit 077b7ac

Browse files
Merge pull request #491 from AndreWohnsland/dev
Adjust docs for current python version
2 parents b29f496 + b3f0947 commit 077b7ac

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/test-release-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.11", "3.13"]
18+
python-version: ["3.13"]
1919
steps:
2020
- name: ⤵️ Check out code from GitHub
2121
uses: actions/checkout@v6

.sonarcloud.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sonar.python.version=3.11
1+
sonar.python.version=3.13
22
sonar.cpd.exclusions=**/*.stories.ts
33
sonar.issue.ignore.multicriteria=e1
44
sonar.issue.ignore.multicriteria.e1.ruleKey=python:S8415

docs/.devnotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This is an additional section for information, generally not relevant for the us
2929
Currently used version (just use uv and see .python-version file):
3030

3131
```
32-
Python Version 3.11.x
32+
Python Version 3.13.x
3333
```
3434

3535
In the past, there were some issues due to not using the same Python version during development (PC) and at production (RPi). To prevent those issues, the same Python version (up to minor) like the current one shipped with the RPi system should be used. This will prevent making errors like using `list` instead of `List` for type hints (only works at Python 3.9+) and other features not yet available in the default RPi Python. Please use an according Python version for your local development.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![GitHub release (latest by date)](https://img.shields.io/github/v/release/AndreWohnsland/CocktailBerry)
44
![GitHub Release Date](https://img.shields.io/github/release-date/AndreWohnsland/CocktailBerry)
5-
![Python Version](https://img.shields.io/badge/python-%3E%3D%203.11-blue)
5+
![Python Version](https://img.shields.io/badge/python-%3E%3D%203.13-blue)
66
![GitHub](https://img.shields.io/github/license/AndreWohnsland/CocktailBerry)
77
![GitHub issues](https://img.shields.io/github/issues-raw/AndreWohnsland/CocktailBerry)
88
[![Documentation Status](https://readthedocs.org/projects/cocktailberry/badge/?version=latest)](https://cocktailberry.readthedocs.io)

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Here you can find all the requirements and installation steps.
66

77
These are the minimal tools needed to get started:
88

9-
- [uv](https://docs.astral.sh/uv/getting-started/installation/) or [Python 3.11+](https://www.python.org/downloads/)
9+
- [uv](https://docs.astral.sh/uv/getting-started/installation/) or [Python 3.13+](https://www.python.org/downloads/)
1010
- [Git](https://git-scm.com/downloads)
1111
- recommended: **latest** [Raspberry Pi OS, 64 bit](https://www.raspberrypi.com/software/) (Desktop, Trixie)
1212

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Quickstart
22

33
Here are some simple steps to get CocktailBerry running.
4-
You need to have [uv](https://docs.astral.sh/uv/getting-started/installation/) (or Python 3.11+) and [**git**](https://git-scm.com/downloads) installed.
4+
You need to have [uv](https://docs.astral.sh/uv/getting-started/installation/) (or Python 3.13+) and [**git**](https://git-scm.com/downloads) installed.
55
If you want to use v2 in a manual installation, you also need to have [Node.js](https://nodejs.org/en/download/) and [Yarn](https://yarnpkg.com/getting-started/install) installed.
66

77
## Raspberry Pi

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ In addition, there is the possibility to use and set up a second device as a das
7171

7272
# Quickstart
7373

74-
Here are some simple steps to get CocktailBerry running. You need to have **Python 3.11** or newer and **git** installed.
74+
Here are some simple steps to get CocktailBerry running. You need to have **Python 3.13** or newer and **git** installed.
7575
If you are using a Raspberry Pi and a current OS, you should be good to go.
7676

7777
On the RPi, you can try the new [all in one installer script](https://github.com/AndreWohnsland/CocktailBerry/blob/master/scripts/all_in_one.sh).

0 commit comments

Comments
 (0)