26
26
strategy :
27
27
fail-fast : false # Don't cancel other jobs if one lint version fails
28
28
matrix :
29
- python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 ", "3.12 "]
29
+ python-version : ["3.9 ", "3.10 ", "3.11 ", "3.12 ", "3.13 "]
30
30
steps :
31
31
- name : Checkout repository
32
32
uses : actions/checkout@v4
74
74
strategy :
75
75
fail-fast : false # Don't cancel other jobs if one test version fails
76
76
matrix :
77
- python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 ", "3.12 "]
77
+ python-version : ["3.9 ", "3.10 ", "3.11 ", "3.12 ", "3.13 "]
78
78
steps :
79
79
- name : Checkout repository
80
80
uses : actions/checkout@v4
@@ -116,7 +116,7 @@ jobs:
116
116
strategy :
117
117
fail-fast : false
118
118
matrix :
119
- python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 ", "3.12 "]
119
+ python-version : ["3.9 ", "3.10 ", "3.11 ", "3.12 ", "3.13 "]
120
120
steps :
121
121
- name : Checkout repository
122
122
uses : actions/checkout@v4
@@ -204,7 +204,7 @@ jobs:
204
204
fail-fast : true # If one deployment fails, stop others
205
205
matrix :
206
206
# Define ALL python versions for Docker images
207
- python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 ", "3.12 "]
207
+ python-version : ["3.9 ", "3.10 ", "3.11 ", "3.12 ", "3.13 "]
208
208
# Designate ONE primary version for PyPI publish and Docker 'latest' tag
209
209
primary-py : ['3.11'] # Choose your primary Python version
210
210
@@ -286,7 +286,7 @@ jobs:
286
286
# Use the Git tag from the event ref as the base version
287
287
# Assumes tags are like '0.1.0' or 'v0.1.0' - metadata-action handles 'v' prefix
288
288
tags : |
289
- # Generate tags like: 0.1.0-py3.8 , 0.1-py3.8 , 0-py3.8
289
+ # Generate tags like: 0.1.0-py3.9 , 0.1-py3.9 , 0-py3.9
290
290
type=semver,pattern={{version}}-py${{ matrix.python-version }}
291
291
type=semver,pattern={{major}}.{{minor}}-py${{ matrix.python-version }}
292
292
type=semver,pattern={{major}}-py${{ matrix.python-version }}
@@ -315,4 +315,4 @@ jobs:
315
315
PYTHON_VERSION=${{ matrix.python-version }}
316
316
VERSION=${{ steps.get_version_tag.outputs.VERSION }}
317
317
cache-from : type=gha,scope=deploy-${{ matrix.python-version }}
318
- cache-to : type=gha,mode=max,scope=deploy-${{ matrix.python-version }}
318
+ cache-to : type=gha,mode=max,scope=deploy-${{ matrix.python-version }}
0 commit comments