Skip to content

Commit 7b9c68d

Browse files
authored
Revert "Bump python 396 (#130)" (#131)
* Revert "Bump python 396 (#130)" This reverts commit f229588. * change uninstallable 3.5.2 to 3.5.6 * Bump to v0.2.1
1 parent f229588 commit 7b9c68d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
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'
@@ -34,7 +35,8 @@ jobs:
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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
from setuptools import setup
44

55
setup(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={

0 commit comments

Comments
 (0)