Skip to content

Commit 50ab8a1

Browse files
authored
format headers in python and other small tweaks (#148)
* bump dependencies * remove if
1 parent ae0bbbf commit 50ab8a1

6 files changed

+163
-99
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,7 @@ com_crashlytics_export_strings.xml
105105
crashlytics.properties
106106
crashlytics-build.properties
107107

108+
# Used by direnv plugin
109+
.direnv
110+
.envrc
108111
# Created by .ignore support plugin (hsz.mobi)

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ repos:
33
rev: stable
44
hooks:
55
- id: black
6-
language_version: python3.7
6+
language_version: python3.11
77

docker-compose.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
version: '3'
2+
3+
services:
4+
postgres11:
5+
image: postgres:11.18-alpine
6+
command: postgres -c shared_preload_libraries=pg_stat_statements
7+
environment:
8+
POSTGRES_USER: postgres
9+
POSTGRES_DB: ecto_psql_extras_test
10+
POSTGRES_PASSWORD: postgres
11+
ports:
12+
- '5441:5432'
13+
postgres12:
14+
image: postgres:12.13-alpine
15+
command: postgres -c shared_preload_libraries=pg_stat_statements
16+
environment:
17+
POSTGRES_USER: postgres
18+
POSTGRES_DB: ecto_psql_extras_test
19+
POSTGRES_PASSWORD: postgres
20+
ports:
21+
- '5442:5432'
22+
postgres13:
23+
image: postgres:13.3-alpine
24+
command: postgres -c shared_preload_libraries=pg_stat_statements
25+
environment:
26+
POSTGRES_USER: postgres
27+
POSTGRES_DB: ecto_psql_extras_test
28+
POSTGRES_PASSWORD: postgres
29+
ports:
30+
- '5443:5432'
31+
postgres14:
32+
image: postgres:14.6-alpine
33+
command: postgres -c shared_preload_libraries=pg_stat_statements
34+
environment:
35+
POSTGRES_USER: postgres
36+
POSTGRES_DB: ecto_psql_extras_test
37+
POSTGRES_PASSWORD: postgres
38+
ports:
39+
- '5444:5432'
40+
postgres15:
41+
image: postgres:15.1-alpine
42+
command: postgres -c shared_preload_libraries=pg_stat_statements
43+
environment:
44+
POSTGRES_USER: postgres
45+
POSTGRES_DB: ecto_psql_extras_test
46+
POSTGRES_PASSWORD: postgres
47+
ports:
48+
- '5445:5432'

0 commit comments

Comments
 (0)