From d432db96a4c5dff0db65be7e5e2440d063466059 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sun, 6 Oct 2024 11:55:24 +0200 Subject: [PATCH 1/5] ADD: python 3.13 support --- .github/workflows/python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 443ae36b..2d04c285 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: [ '3.10', '3.11', '3.12' ] + python-version: [ '3.10', '3.11', '3.12', '3.13.0rc3' ] runs-on: ${{ matrix.os }} From 3e77d1144ebfed0cd5c4b5e63608667c5403ea4a Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sun, 6 Oct 2024 11:57:16 +0200 Subject: [PATCH 2/5] FIX: version notation --- .github/workflows/python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 2d04c285..5924e280 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: [ '3.10', '3.11', '3.12', '3.13.0rc3' ] + python-version: [ '3.10', '3.11', '3.12', '3.13.0-rc3' ] runs-on: ${{ matrix.os }} From 729f12d96be3425175e9efda969be5dcf5d384ad Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sun, 6 Oct 2024 11:58:49 +0200 Subject: [PATCH 3/5] FIX: notation --- .github/workflows/python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 5924e280..7e70b7ff 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: [ '3.10', '3.11', '3.12', '3.13.0-rc3' ] + python-version: [ '3.10', '3.11', '3.12', '3.13.0-rc.3' ] runs-on: ${{ matrix.os }} From f606b84cc4c32b70adf7c1a0a9dafcd5373ea4eb Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:01:58 +0200 Subject: [PATCH 4/5] BUMP: release version --- .github/workflows/python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 7e70b7ff..4e36dc5e 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: [ '3.10', '3.11', '3.12', '3.13.0-rc.3' ] + python-version: [ '3.10', '3.11', '3.12', '3.13.0' ] runs-on: ${{ matrix.os }} From 7b0ab1a2caf71c002ea337aca28dc4b89978c179 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:04:52 +0200 Subject: [PATCH 5/5] FIX: use minor version only --- .github/workflows/python-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 4e36dc5e..52fe84b2 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: [ '3.10', '3.11', '3.12', '3.13.0' ] + python-version: [ '3.10', '3.11', '3.12', '3.13' ] runs-on: ${{ matrix.os }}