Skip to content

Commit

Permalink
format headers in python and other small tweaks (#148)
Browse files Browse the repository at this point in the history
* bump dependencies

* remove if
  • Loading branch information
dkuku authored Jan 6, 2024
1 parent ae0bbbf commit 50ab8a1
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 99 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,7 @@ com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties

# Used by direnv plugin
.direnv
.envrc
# Created by .ignore support plugin (hsz.mobi)
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ repos:
rev: stable
hooks:
- id: black
language_version: python3.7
language_version: python3.11

48 changes: 48 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
version: '3'

services:
postgres11:
image: postgres:11.18-alpine
command: postgres -c shared_preload_libraries=pg_stat_statements
environment:
POSTGRES_USER: postgres
POSTGRES_DB: ecto_psql_extras_test
POSTGRES_PASSWORD: postgres
ports:
- '5441:5432'
postgres12:
image: postgres:12.13-alpine
command: postgres -c shared_preload_libraries=pg_stat_statements
environment:
POSTGRES_USER: postgres
POSTGRES_DB: ecto_psql_extras_test
POSTGRES_PASSWORD: postgres
ports:
- '5442:5432'
postgres13:
image: postgres:13.3-alpine
command: postgres -c shared_preload_libraries=pg_stat_statements
environment:
POSTGRES_USER: postgres
POSTGRES_DB: ecto_psql_extras_test
POSTGRES_PASSWORD: postgres
ports:
- '5443:5432'
postgres14:
image: postgres:14.6-alpine
command: postgres -c shared_preload_libraries=pg_stat_statements
environment:
POSTGRES_USER: postgres
POSTGRES_DB: ecto_psql_extras_test
POSTGRES_PASSWORD: postgres
ports:
- '5444:5432'
postgres15:
image: postgres:15.1-alpine
command: postgres -c shared_preload_libraries=pg_stat_statements
environment:
POSTGRES_USER: postgres
POSTGRES_DB: ecto_psql_extras_test
POSTGRES_PASSWORD: postgres
ports:
- '5445:5432'
Loading

0 comments on commit 50ab8a1

Please sign in to comment.