mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
61e644049f
Python 3.7 was released on June 27, 2018. https://docs.python.org/3/whatsnew/3.7.html
27 lines
418 B
YAML
27 lines
418 B
YAML
# Travis CI configuration file for psycopg2
|
|
|
|
dist: xenial
|
|
sudo: required
|
|
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
- python: 3.7
|
|
- python: 3.6
|
|
- python: 3.5
|
|
- python: 3.4
|
|
dist: trusty
|
|
|
|
install:
|
|
- pip install -U pip setuptools wheel
|
|
- pip install .
|
|
- rm -rf psycopg2.egg-info
|
|
- sudo scripts/travis_prepare.sh
|
|
|
|
script:
|
|
- scripts/travis_test.sh
|
|
|
|
notifications:
|
|
email: false
|