Skip to content

Commit 79e8723

Browse files
committed
chore: update Python version from 3.13.2 to 3.13.5 in documentation
Update the Python version in the CONTRIBUTING.md and DOCKER.md files to 3.13.5. This ensures that the documentation reflects the latest stable version of Python being used in the project, which may include important bug fixes and improvements. Keeping the Python version up-to-date helps maintain compatibility and security across development and production environments.
1 parent c2b38c1 commit 79e8723

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ Follow these steps to set up your local development environment. For more compre
6363
6464
2. **Install Dependencies with Poetry**
6565
66-
Ensure Poetry is installed and configured to use the correct Python version (e.g., 3.13.2).
66+
Ensure Poetry is installed and configured to use the correct Python version (e.g., 3.13.5).
6767
6868
```bash
6969
# Create a virtual environment
70-
poetry env use 3.13.2
70+
poetry env use 3.13.5
7171
7272
# Install project dependencies and dev tools
7373
poetry install

DOCKER.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ All tests validate against configurable thresholds:
168168
### **Multi-Stage Dockerfile**
169169

170170
```dockerfile
171-
FROM python:3.13.2-slim AS base # Common runtime base
171+
FROM python:3.13.5-slim AS base # Common runtime base
172172
FROM base AS build # Build dependencies & tools
173173
FROM build AS dev # Development environment
174-
FROM python:3.13.2-slim AS production # Minimal production runtime
174+
FROM python:3.13.5-slim AS production # Minimal production runtime
175175
```
176176

177177
### **Key Features**
@@ -523,7 +523,7 @@ docker system df
523523
docker images
524524

525525
# Manual image restoration if needed
526-
docker pull python:3.13.2-slim
526+
docker pull python:3.13.5-slim
527527
docker pull ubuntu:22.04
528528
```
529529

0 commit comments

Comments
 (0)