File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 20
20
source dev_env.sh
21
21
export LC_ALL=C
22
22
apt install -y libpq-dev
23
+ pyenv local 3.5.6
23
24
python3 -m venv /usr/local/share/virtualenvs/tap-postgres
24
25
source /usr/local/share/virtualenvs/tap-postgres/bin/activate
25
26
pip install -U 'pip<19.2' 'setuptools<51.0.0'
34
35
command : |
35
36
source dev_env.sh
36
37
source /usr/local/share/virtualenvs/tap-tester/bin/activate
37
- pip install psycopg2==2.8.6
38
+ apt install -y libpq-dev
39
+ pip install psycopg2==2.8.4
38
40
run-test --tap=tap-postgres tests
39
41
- slack/notify-on-failure :
40
42
only_for_branches : master
Original file line number Diff line number Diff line change 3
3
from setuptools import setup
4
4
5
5
setup (name = 'tap-postgres' ,
6
- version = '0.2.0 ' ,
6
+ version = '0.2.1 ' ,
7
7
description = 'Singer.io tap for extracting data from PostgreSQL' ,
8
8
author = 'Stitch' ,
9
9
url = 'https://singer.io' ,
10
10
classifiers = ['Programming Language :: Python :: 3 :: Only' ],
11
11
install_requires = [
12
12
'singer-python==5.3.1' ,
13
- 'psycopg2==2.8.6 ' ,
13
+ 'psycopg2==2.7.4 ' ,
14
14
'strict-rfc3339==0.7' ,
15
15
],
16
16
extras_require = {
You can’t perform that action at this time.
0 commit comments