From def545c4090f47358b9ee6e22366654b14533d95 Mon Sep 17 00:00:00 2001 From: Hassan Kibirige Date: Fri, 25 Oct 2024 14:52:30 +0300 Subject: [PATCH] CI: Test with python 3.13 --- .github/workflows/documentation.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/testing.yml | 6 +++--- .github/workflows/weekly.yml | 12 ++++++------ pyproject.toml | 1 + 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index eea39fc3c..58c217e06 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -45,7 +45,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5aa52d761..3199f65b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: - python-version: ["3.12"] + python-version: ["3.13"] steps: - name: Checkout Code @@ -68,7 +68,7 @@ jobs: strategy: matrix: - python-version: ["3.12"] + python-version: ["3.13"] steps: - name: Checkout Code diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index a47c9b586..123a8ea3e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -26,7 +26,7 @@ jobs: include: - python-version: "3.10" resolution: "lowest-direct" - - python-version: 3.12 + - python-version: 3.13 resolution: "highest" steps: - name: Checkout Code @@ -91,7 +91,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code uses: actions/checkout@v4 @@ -134,7 +134,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index 4b0d11a7b..7375f9118 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code @@ -57,7 +57,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code @@ -102,7 +102,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Get latest release with tag from GitHub API @@ -157,7 +157,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Get latest release with tag from GitHub API @@ -215,7 +215,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code @@ -254,7 +254,7 @@ jobs: strategy: matrix: - python-version: [3.12] + python-version: [3.13] steps: - name: Checkout Code diff --git a/pyproject.toml b/pyproject.toml index 99ceff330..55ba3bfc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Framework :: Matplotlib", "Topic :: Scientific/Engineering :: Visualization" ]