File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 source dev_env.sh
2121 export LC_ALL=C
2222 apt install -y libpq-dev
23+ pyenv local 3.5.6
2324 python3 -m venv /usr/local/share/virtualenvs/tap-postgres
2425 source /usr/local/share/virtualenvs/tap-postgres/bin/activate
2526 pip install -U 'pip<19.2' 'setuptools<51.0.0'
3435 command : |
3536 source dev_env.sh
3637 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
3840 run-test --tap=tap-postgres tests
3941 - slack/notify-on-failure :
4042 only_for_branches : master
Original file line number Diff line number Diff line change 33from setuptools import setup
44
55setup (name = 'tap-postgres' ,
6- version = '0.2.0 ' ,
6+ version = '0.2.1 ' ,
77 description = 'Singer.io tap for extracting data from PostgreSQL' ,
88 author = 'Stitch' ,
99 url = 'https://singer.io' ,
1010 classifiers = ['Programming Language :: Python :: 3 :: Only' ],
1111 install_requires = [
1212 'singer-python==5.3.1' ,
13- 'psycopg2==2.8.6 ' ,
13+ 'psycopg2==2.7.4 ' ,
1414 'strict-rfc3339==0.7' ,
1515 ],
1616 extras_require = {
You can’t perform that action at this time.
0 commit comments