Skip to content

Commit 3d1a970

Browse files
committed
Switch to PostgreSQL 10 as the latest supported version.
1 parent e54f02e commit 3d1a970

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

.travis.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,9 @@ matrix:
8080
sudo: false
8181
language: python
8282
python: "3.6"
83-
env: BUILD=quicktests PGVERSION=10
83+
env: BUILD=quicktests PGVERSION=9.6
8484
addons:
85-
apt:
86-
sources:
87-
- sourceline: 'deb https://apt.postgresql.org/pub/repos/apt/ trusty-pgdg 10'
88-
key_url: 'https://www.postgresql.org/media/keys/ACCC4CF8.asc'
89-
packages: [postgresql-10]
85+
apt: {packages: [postgresql-9.6]}
9086

9187
# Do a full test run on the latest supported version of PostgreSQL
9288
# on each supported version of Python.
@@ -95,27 +91,27 @@ matrix:
9591
sudo: false
9692
language: python
9793
python: "3.5"
98-
env: BUILD=tests PGVERSION=9.6
94+
env: BUILD=tests PGVERSION=10
9995
addons:
100-
apt: {packages: [postgresql-9.6]}
96+
apt: {packages: [postgresql-10]}
10197

10298
- os: linux
10399
dist: trusty
104100
sudo: false
105101
language: python
106102
python: "3.6"
107-
env: BUILD=tests PGVERSION=9.6
103+
env: BUILD=tests PGVERSION=10
108104
addons:
109-
apt: {packages: [postgresql-9.6]}
105+
apt: {packages: [postgresql-10]}
110106

111107
- os: linux
112108
dist: trusty
113109
sudo: false
114110
language: python
115111
python: "3.7-dev"
116-
env: BUILD=tests PGVERSION=9.6
112+
env: BUILD=tests PGVERSION=10
117113
addons:
118-
apt: {packages: [postgresql-9.6]}
114+
apt: {packages: [postgresql-10]}
119115

120116
# Build manylinux wheels. Each wheel will be tested,
121117
# so there is no need for BUILD=tests here.
@@ -126,10 +122,10 @@ matrix:
126122
sudo: required
127123
language: python
128124
python: "3.5"
129-
env: BUILD=wheels,docs,release PGVERSION=9.6
125+
env: BUILD=wheels,docs,release PGVERSION=10
130126
services: [docker]
131127
addons:
132-
apt: {packages: [postgresql-9.6]}
128+
apt: {packages: [postgresql-10]}
133129

134130
- os: osx
135131
env: BUILD=tests,wheels PYTHON_VERSION=3.5.2 PIP_USER=1 PGVERSION=9.6

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ framework. You can read more about asyncpg in an introductory
1717
`blog post <http://magic.io/blog/asyncpg-1m-rows-from-postgres-to-python/>`_.
1818

1919
asyncpg requires Python 3.5 or later and is supported for PostgreSQL
20-
versions 9.2 to 9.6.
20+
versions 9.2 to 10.
2121

2222

2323
Documentation

0 commit comments

Comments
 (0)