diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 61c68e67a7107457e2f3c780b54366a23eae1e78..65698d866d885e28c27c37b54372ae5fcb65a43f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -165,15 +165,8 @@ unittest_py312:
 unittest_py313:
   tags: [docker]
   stage: unittest
-  image: python:3.13-rc
-  script:
-    # TODO: Replace by '*python_test_script' as soon as 3.13 has been officially released.
-    - apt update && apt install -y cargo || true
-    - pip install meson[ninja] meson-python || true
-    - pip install pynose pandas pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py || true
-    - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev || true
-    - pip install . || true
-    - pytest --cov=caosadvancedtools unittests || true
+  image: python:3.13
+  script: *python_test_script
 
 # Build the sphinx documentation and make it ready for deployment by Gitlab Pages
 # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62794e6eb776b2e4fa30cd2698fa1f7a829ec83d..3be1b6deafa12875ce74dcc6e711d96ee85e0482 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added ###
 
+* Official support for Python 3.13
+
 ### Changed ###
 
 ### Deprecated ###