Skip to content

Commit

Permalink
Merge pull request #1190 from martinfrancois/master
Browse files Browse the repository at this point in the history
Add support for PostgreSQL 13 (final)
  • Loading branch information
dvarrazzo authored Nov 13, 2020
2 parents f900fa4 + 8c50af5 commit 87dc783
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/src/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ The current `!psycopg2` implementation supports:
- Python version 2.7
- Python 3 versions from 3.4 to 3.8
- PostgreSQL server versions from 7.4 to 12
- PostgreSQL server versions from 7.4 to 13
- PostgreSQL client library version from 9.1


Expand Down
4 changes: 3 additions & 1 deletion scripts/travis_prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ if (( "$TEST_PRESENT" )); then
# Postgres versions supported by ARM64
create 10
else
create 13
create 12
create 11
create 10
Expand All @@ -150,5 +151,6 @@ fi

# Postgres built from master
if (( "$TEST_FUTURE" )); then
create 13 13-master
# create 14 14-master
true
fi
4 changes: 3 additions & 1 deletion scripts/travis_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ if (( "$TEST_PRESENT" )); then
run_test 10
else
# Postgres versions supported by Travis CI
run_test 13
run_test 12
run_test 11
run_test 10
Expand All @@ -81,5 +82,6 @@ fi

# Postgres built from master
if (( "$TEST_FUTURE" )); then
run_test 13
# create 14 14-master
true
fi

0 comments on commit 87dc783

Please sign in to comment.