@@ -12,14 +12,14 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
strategy :
15
- # If either the tests for 3.8 or 3.10 fail all workflows
15
+ # If either the tests for 3.8 or 3.11 fail all workflows
16
16
# are terminated to safe computing resources.
17
17
fail-fast : true
18
18
# To safe runtime least and latest version supported are
19
19
# chosen. We go for 3.8 due to some dependencies. For more
20
20
# info see the pyproject.toml
21
21
matrix :
22
- python-version : ["3.8", "3.10 "]
22
+ python-version : ["3.8", "3.11 "]
23
23
24
24
steps :
25
25
- uses : actions/checkout@v3
@@ -79,10 +79,10 @@ jobs:
79
79
echo "version=${VERSION}" >> $GITHUB_OUTPUT
80
80
81
81
# For publishing any version will do
82
- - name : Set up Python 3.10
82
+ - name : Set up Python 3.11
83
83
uses : actions/setup-python@v4
84
84
with :
85
- python-version : " 3.10 "
85
+ python-version : " 3.11 "
86
86
87
87
- name : Install Task
88
88
run : |
@@ -127,10 +127,10 @@ jobs:
127
127
128
128
steps :
129
129
# Install python (be aware NO checkout action)
130
- - name : Set up Python 3.10
130
+ - name : Set up Python 3.11
131
131
uses : actions/setup-python@v4
132
132
with :
133
- python-version : " 3.10 "
133
+ python-version : " 3.11 "
134
134
135
135
# Check if it installs without errors
136
136
- name : Install package
@@ -158,10 +158,10 @@ jobs:
158
158
with :
159
159
fetch-depth : 0
160
160
161
- - name : Set up Python 3.10
161
+ - name : Set up Python 3.11
162
162
uses : actions/setup-python@v4
163
163
with :
164
- python-version : " 3.10 "
164
+ python-version : " 3.11 "
165
165
166
166
- name : Install Task
167
167
run : |
0 commit comments