@@ -36,11 +36,11 @@ def set_output(key: str, value: str):
3636# First calculate the various trial jobs.
3737#
3838# For PRs, we only run each type of test with the oldest Python version supported (which
39- # is Python 3.9 right now)
39+ # is Python 3.10 right now)
4040
4141trial_sqlite_tests = [
4242 {
43- "python-version" : "3.9 " ,
43+ "python-version" : "3.10 " ,
4444 "database" : "sqlite" ,
4545 "extras" : "all" ,
4646 }
@@ -53,12 +53,12 @@ def set_output(key: str, value: str):
5353 "database" : "sqlite" ,
5454 "extras" : "all" ,
5555 }
56- for version in ("3.10" , "3. 11" , "3.12" , "3.13" )
56+ for version in ("3.11" , "3.12" , "3.13" )
5757 )
5858
5959trial_postgres_tests = [
6060 {
61- "python-version" : "3.9 " ,
61+ "python-version" : "3.10 " ,
6262 "database" : "postgres" ,
6363 "postgres-version" : "13" ,
6464 "extras" : "all" ,
@@ -77,7 +77,7 @@ def set_output(key: str, value: str):
7777
7878trial_no_extra_tests = [
7979 {
80- "python-version" : "3.9 " ,
80+ "python-version" : "3.10 " ,
8181 "database" : "sqlite" ,
8282 "extras" : "" ,
8383 }
@@ -99,24 +99,24 @@ def set_output(key: str, value: str):
9999
100100# First calculate the various sytest jobs.
101101#
102- # For each type of test we only run on bullseye on PRs
102+ # For each type of test we only run on bookworm on PRs
103103
104104
105105sytest_tests = [
106106 {
107- "sytest-tag" : "bullseye " ,
107+ "sytest-tag" : "bookworm " ,
108108 },
109109 {
110- "sytest-tag" : "bullseye " ,
110+ "sytest-tag" : "bookworm " ,
111111 "postgres" : "postgres" ,
112112 },
113113 {
114- "sytest-tag" : "bullseye " ,
114+ "sytest-tag" : "bookworm " ,
115115 "postgres" : "multi-postgres" ,
116116 "workers" : "workers" ,
117117 },
118118 {
119- "sytest-tag" : "bullseye " ,
119+ "sytest-tag" : "bookworm " ,
120120 "postgres" : "multi-postgres" ,
121121 "workers" : "workers" ,
122122 "reactor" : "asyncio" ,
@@ -127,11 +127,11 @@ def set_output(key: str, value: str):
127127 sytest_tests .extend (
128128 [
129129 {
130- "sytest-tag" : "bullseye " ,
130+ "sytest-tag" : "bookworm " ,
131131 "reactor" : "asyncio" ,
132132 },
133133 {
134- "sytest-tag" : "bullseye " ,
134+ "sytest-tag" : "bookworm " ,
135135 "postgres" : "postgres" ,
136136 "reactor" : "asyncio" ,
137137 },
0 commit comments