From 774c412efcc24e85724ce6d7349a8ce8d75c0a93 Mon Sep 17 00:00:00 2001 From: Jonathon Broughton Date: Mon, 24 Mar 2025 16:30:12 +0000 Subject: [PATCH] Update Python version to 3.13 - Changed Python version in workflow config - Updated local Python version file - Switched Docker base image to 3.13 --- .github/workflows/main.yml | 2 +- .python-version | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d949d6..9daab29 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4.2.2 - uses: actions/setup-python@v5 with: - python-version: '3.12.4' + python-version: '3.13' - name: Install dependencies run: | pip install uv diff --git a/.python-version b/.python-version index 455808f..24ee5b1 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.12.4 +3.13 diff --git a/Dockerfile b/Dockerfile index 7b61b40..68b2808 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # We use the official Python 3.13 image as our base image and will add our code to it. For more details, see https://hub.docker.com/_/python -FROM python:3.12.4-slim +FROM python:3.13-slim # We set the working directory to be the /home/speckle directory; all of our files will be copied here. WORKDIR /home/speckle