Skip to content

Commit 7b1c8b8

Browse files
authored
Merge pull request #29 from Corvan/bookworm
project: swap buster for bookworm
2 parents 1a36549 + 7e2ac58 commit 7b1c8b8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
python_version: ["3.9", "3.10", "3.11", "3.12-rc"]
14-
debian_codename: ["buster", "bullseye"]
14+
debian_codename: ["bullseye", "bookworm"]
1515
task: ["black", "lint", "mypy", "unittest", "integration"]
1616
steps:
1717
- name: Checkout Project

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
python_version: ["3.9", "3.10", "3.11", "3.12-rc"]
21-
debian_codename: ["buster", "bullseye"]
21+
debian_codename: ["bullseye", "bookworm"]
2222
container:
2323
image: ghcr.io/corvan/black:${{ matrix.python_version }}-${{ matrix.debian_codename }}
2424
credentials:
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
python_version: [ "3.9", "3.10", "3.11", "3.12-rc" ]
38-
debian_codename: [ "buster", "bullseye" ]
38+
debian_codename: ["bullseye", "bookworm"]
3939
container:
4040
image: ghcr.io/corvan/lint:${{ matrix.python_version }}-${{ matrix.debian_codename }}
4141
credentials:
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
matrix:
5454
python_version: [ "3.9", "3.10", "3.11", "3.12-rc" ]
55-
debian_codename: [ "buster", "bullseye" ]
55+
debian_codename: ["bullseye", "bookworm"]
5656
container:
5757
image: ghcr.io/corvan/mypy:${{ matrix.python_version }}-${{ matrix.debian_codename }}
5858
credentials:
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
matrix:
7474
python_version: [ "3.9", "3.10", "3.11", "3.12-rc" ]
75-
debian_codename: [ "buster", "bullseye" ]
75+
debian_codename: ["bullseye", "bookworm"]
7676
container:
7777
image: ghcr.io/corvan/unittest:${{ matrix.python_version }}-${{ matrix.debian_codename }}
7878
credentials:
@@ -91,7 +91,7 @@ jobs:
9191
strategy:
9292
matrix:
9393
python_version: [ "3.9", "3.10", "3.11", "3.12-rc" ]
94-
debian_codename: [ "buster", "bullseye" ]
94+
debian_codename: ["bullseye", "bookworm"]
9595
container:
9696
image: ghcr.io/corvan/integration:${{ matrix.python_version }}-${{ matrix.debian_codename }}
9797
credentials:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ python_versions = [
9797
"3.12-rc"
9898
]
9999
debian_codenames = [
100-
"buster",
101100
"bullseye",
101+
"bookworm"
102102
]
103103

104104
checkers = [

0 commit comments

Comments
 (0)