Skip to content

Commit

Permalink
Bump PG versions used in CI
Browse files Browse the repository at this point in the history
Use newly released 13.13, 14.10, 15.5 and 16.1 in CI.
  • Loading branch information
svenklemm committed Nov 9, 2023
1 parent d0021d5 commit 1d72428
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/ci_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
# ABI_MIN is the minimum postgres version required when the extension was build against LATEST

PG13_EARLIEST = "13.2"
PG13_LATEST = "13.12"
PG13_LATEST = "13.13"
PG13_ABI_MIN = "13.5"

PG14_EARLIEST = "14.0"
PG14_LATEST = "14.9"
PG14_LATEST = "14.10"
PG14_ABI_MIN = "14.0"

PG15_EARLIEST = "15.0"
PG15_LATEST = "15.4"
PG15_LATEST = "15.5"
PG15_ABI_MIN = "15.0"

PG16_EARLIEST = "16.0"
PG16_LATEST = "16.0"
PG16_LATEST = "16.1"
PG16_ABI_MIN = "16.0"

PG_LATEST = [PG13_LATEST, PG14_LATEST, PG15_LATEST, PG16_LATEST]

0 comments on commit 1d72428

Please sign in to comment.