mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
b52ff10153
Also, switch to wheel, because eggs caused problems on 3.7: ValueError: bad marshal data (unknown type code)
25 lines
342 B
YAML
25 lines
342 B
YAML
# Travis CI configuration file for psycopg2
|
|
|
|
dist: trusty
|
|
sudo: required
|
|
language: python
|
|
|
|
python:
|
|
- 2.7
|
|
- 3.7-dev
|
|
- 3.6
|
|
- 3.5
|
|
- 3.4
|
|
|
|
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
|