diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-06-28 06:28:50 -0700 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-07-12 18:07:25 -0700 |
commit | 61e644049fb5fea153d7da944bc0f33b7f169b0f (patch) | |
tree | fe56667a44f6e553ca561ed8832dde6e9af48d52 /scripts | |
parent | 6becf0ef550e8eb0c241c3835b1466eef37b1784 (diff) | |
download | psycopg2-61e644049fb5fea153d7da944bc0f33b7f169b0f.tar.gz |
Add testing and document support for Python 3.7
Python 3.7 was released on June 27, 2018.
https://docs.python.org/3/whatsnew/3.7.html
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis_prepare.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis_prepare.sh b/scripts/travis_prepare.sh index 73cbb84..71045c6 100755 --- a/scripts/travis_prepare.sh +++ b/scripts/travis_prepare.sh @@ -38,7 +38,7 @@ create () { export PGBIN="$PGDIR/bin" # install postgres versions not available on the image - if (( "$VERNUM" < 902 || "$VERNUM" > 906 )); then + if [[ ! -d "${PGDIR}" ]]; then wget -O - http://initd.org/psycopg/upload/postgresql/postgresql-${PACKAGE}.tar.bz2 \ | sudo tar xjf - -C /usr/lib/postgresql fi @@ -109,7 +109,6 @@ if [[ -z "$DONT_TEST_PRESENT" ]]; then create 9.6 create 9.5 create 9.4 - create 9.3 fi # Unsupported postgres versions that we still support @@ -124,6 +123,7 @@ if [[ -n "$TEST_PAST" ]]; then create 9.0 create 9.1 create 9.2 + create 9.3 fi # Postgres built from master |