File tree Expand file tree Collapse file tree 3 files changed +581
-502
lines changed Expand file tree Collapse file tree 3 files changed +581
-502
lines changed Original file line number Diff line number Diff line change 26
26
- name : Run image
27
27
uses : abatilo/actions-poetry@v2.0.0
28
28
with :
29
- poetry-version : 1.2.2
29
+ poetry-version : 1.5.1
30
30
31
31
- name : Publish
32
32
env :
Original file line number Diff line number Diff line change @@ -14,13 +14,15 @@ concurrency:
14
14
15
15
jobs :
16
16
test :
17
- runs-on : ubuntu-latest
17
+ # Ubuntu 22 supports python3.7, ubuntu-latest does not and so we need to use an old frozen version.
18
+ # Until we decide to drop support for python3.7
19
+ runs-on : ubuntu-22.04
18
20
strategy :
19
21
fail-fast : false
20
22
matrix :
21
23
# Test our minimum version bound, the highest version available,
22
24
# and something in the middle (i.e. what gets run locally).
23
- python-version : ["3.7", "3.9", "3.12"]
25
+ python-version : ["3.7.17 ", "3.9", "3.12"]
24
26
pytest-asyncio-version : ["0.16.0", "0.19.0"]
25
27
sqlalchemy-version : ["1.3.0", "1.4.0", "2.0.0"]
26
28
35
37
- name : Install poetry
36
38
uses : abatilo/actions-poetry@v2.0.0
37
39
with :
38
- poetry-version : 1.2.2
40
+ poetry-version : 1.5.1
39
41
40
42
- name : Set up cache
41
43
uses : actions/cache@v3
@@ -101,7 +103,7 @@ jobs:
101
103
- name : Install poetry
102
104
uses : abatilo/actions-poetry@v2.0.0
103
105
with :
104
- poetry-version : 1.2.2
106
+ poetry-version : 1.5.1
105
107
106
108
- name : Set up cache
107
109
uses : actions/cache@v3
You can’t perform that action at this time.
0 commit comments