-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade test environment to Postgres 14
* bump test environment image to Postgres 14 * simplify install of pglogical in the test image * lint README.dm
- Loading branch information
Showing
4 changed files
with
23 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
# dockerfile for pglogical container for integration tests | ||
FROM postgres:13.10-bullseye | ||
FROM postgres:14-bullseye | ||
|
||
RUN apt update && apt install postgresql-14-pglogical | ||
|
||
# we have to do a source install because pglogical isn't published for arm64 | ||
RUN apt update && \ | ||
apt install -y curl make build-essential postgresql-server-dev-13 libkrb5-dev libxslt1-dev libselinux1-dev libpam0g-dev zlib1g-dev && \ | ||
curl -LO https://github.com/2ndQuadrant/pglogical/archive/refs/tags/REL2_4_2.tar.gz && \ | ||
tar xzf REL2_4_2.tar.gz && \ | ||
cd pglogical-REL2_4_2 && \ | ||
make clean && make install | ||
|
||
COPY postgresql.conf /etc/postgresql/postgresql.conf | ||
COPY postgresql.conf /etc/postgresql/postgresql.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.0" | |
description = "" | ||
authors = ["Ben Berry <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "sqlalchemy_pglogical"}] | ||
packages = [{ include = "sqlalchemy_pglogical" }] | ||
license = "MIT" | ||
|
||
homepage = "https://github.com/brandfolder/sqlalchemy-pglogical" | ||
|
@@ -17,7 +17,7 @@ classifiers = [ | |
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Topic :: Database :: Front-Ends" | ||
"Topic :: Database :: Front-Ends", | ||
] | ||
[tool.poetry.urls] | ||
"Bug Tracker" = "https://github.com/brandfolder/sqlalchemy-pglogical/issues" | ||
|
@@ -45,4 +45,3 @@ build-backend = "poetry.core.masonry.api" | |
line-length = 88 | ||
target-version = ['py39'] | ||
include = '\.pyi?$' | ||
|