Skip to content

Commit 66b23b9

Browse files
committed
Fix: Psycopg2 can’t compile on Buster
Doesn’t appear that Psycopg2 can compile on Debian: Buster.
1 parent 45b7892 commit 66b23b9

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.circleci/config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
cache:
113113
working_directory: /code/
114114
docker:
115-
- image: python:3.8.1-buster
115+
- image: python:3.7.6-stretch
116116
steps:
117117
- checkout
118118
- *restore__cache
@@ -160,63 +160,63 @@ jobs:
160160
test--12.1:
161161
<<: *test__base
162162
docker:
163-
- image: python:3.8.1-buster
163+
- image: python:3.7.6-stretch
164164
- image: postgres:12.1
165165
environment:
166166
POSTGRES_DB: target_postgres_test
167167

168168
test--11.6:
169169
<<: *test__base
170170
docker:
171-
- image: python:3.8.1-buster
171+
- image: python:3.7.6-stretch
172172
- image: postgres:11.6
173173
environment:
174174
POSTGRES_DB: target_postgres_test
175175

176176
test--10.11:
177177
<<: *test__base
178178
docker:
179-
- image: python:3.8.1-buster
179+
- image: python:3.7.6-stretch
180180
- image: postgres:10.11
181181
environment:
182182
POSTGRES_DB: target_postgres_test
183183

184184
test--9.6.16:
185185
<<: *test__base
186186
docker:
187-
- image: python:3.8.1-buster
187+
- image: python:3.7.6-stretch
188188
- image: postgres:9.6.16
189189
environment:
190190
POSTGRES_DB: target_postgres_test
191191

192192
test--9.5.20:
193193
<<: *test__base
194194
docker:
195-
- image: python:3.8.1-buster
195+
- image: python:3.7.6-stretch
196196
- image: postgres:9.5.20
197197
environment:
198198
POSTGRES_DB: target_postgres_test
199199

200200
test--9.4.25:
201201
<<: *test__base
202202
docker:
203-
- image: python:3.8.1-buster
203+
- image: python:3.7.6-stretch
204204
- image: postgres:9.4.25
205205
environment:
206206
POSTGRES_DB: target_postgres_test
207207

208208
test--8.4.22:
209209
<<: *test__base
210210
docker:
211-
- image: python:3.8.1-buster
211+
- image: python:3.7.6-stretch
212212
- image: postgres:8.4.22
213213
environment:
214214
POSTGRES_DB: target_postgres_test
215215

216216
test--tap-github:
217217
working_directory: /code/
218218
docker:
219-
- image: python:3.8.1-buster
219+
- image: python:3.7.6-stretch
220220
- image: postgres:9.4.24
221221
environment:
222222
POSTGRES_DB: target_postgres_test
@@ -307,7 +307,7 @@ jobs:
307307
test--migrations:
308308
working_directory: /code/
309309
docker:
310-
- image: python:3.8.1-buster
310+
- image: python:3.7.6-stretch
311311
- image: postgres:9.4.24
312312
environment:
313313
POSTGRES_DB: target_postgres_test
@@ -334,7 +334,7 @@ jobs:
334334
build:
335335
working_directory: /code/
336336
docker:
337-
- image: python:3.8.1-buster
337+
- image: python:3.7.6-stretch
338338
steps:
339339
- checkout
340340
- *restore__cache
@@ -359,7 +359,7 @@ jobs:
359359
test-release:
360360
working_directory: /code/
361361
docker:
362-
- image: python:3.8.1-buster
362+
- image: python:3.7.6-stretch
363363
steps:
364364
- checkout
365365
- *restore__cache
@@ -389,7 +389,7 @@ jobs:
389389
release:
390390
working_directory: /code/
391391
docker:
392-
- image: python:3.8.1-buster
392+
- image: python:3.7.6-stretch
393393
steps:
394394
- checkout
395395
- *restore__cache

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- "5432:5432"
99

1010
target-postgres:
11-
image: python:3.8.1-buster
11+
image: python:3.7.6-stretch
1212
working_dir: /code
1313
entrypoint: /code/docker-entrypoint.sh
1414
environment:

0 commit comments

Comments
 (0)