Skip to content

Commit 1d3a2cc

Browse files
committed
python 3.11
1 parent 3508169 commit 1d3a2cc

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim-trixie
1+
FROM python:3.11-slim-trixie
22

33
# Avoid prompts from apt
44
ENV DEBIAN_FRONTEND=noninteractive

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/checkout@v4.1.1
4545
- uses: actions/setup-python@v6
4646
with:
47-
python-version: "3.10"
47+
python-version: "3.11"
4848
- name: Cache pip
4949
uses: actions/cache@v4.3.0
5050
with:

HOWTO-DEV.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ For more details, see [`.devcontainer/README.md`](.devcontainer/README.md).
7676
### Requirements
7777

7878
- A computer running Linux or Windows (on Windows, take a look at [WSL](https://learn.microsoft.com/fr-fr/windows/wsl/install), it will make your developer life easier). Maybe MacOs can work, but it was not tested.
79-
- Python 3.10.x installed with pip and the virtualenv package
79+
- Python 3.11.x installed with pip and the virtualenv package
8080
- On Ubuntu, you can install it from the deadsnakes repository if your embedded python version is too recent (<https://askubuntu.com/questions/1318846/how-do-i-install-python-3-9>)
8181
- On Windows, use Microsoft Store to install it (<https://apps.microsoft.com/detail/9p7qfqmjrfp7>)
8282
- A docker environment with docker compose plugin (either [docker desktop](https://www.docker.com/products/docker-desktop/) or a manual installation)
@@ -90,7 +90,7 @@ For more details, see [`.devcontainer/README.md`](.devcontainer/README.md).
9090
- Create a virtual environment in it:
9191

9292
```shell
93-
python3.10 -m venv venv
93+
python3.11 -m venv venv
9494
```
9595

9696
- Activate the virtual environment (⚠️ Do not forget to activate it in all terminal instances you intend to use)

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/python:3.10-slim-trixie
1+
FROM docker.io/python:3.11-slim-trixie
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV LC_ALL=en_US.UTF-8

docker/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/python:3.10-slim-trixie
1+
FROM docker.io/python:3.11-slim-trixie
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
ENV LC_ALL=en_US.UTF-8

0 commit comments

Comments
 (0)