From a8f5188369e89d592b4654d3b61cc574c01bd989 Mon Sep 17 00:00:00 2001 From: Hassan Syyid Date: Mon, 6 Sep 2021 16:15:40 -0400 Subject: [PATCH] Resolves #11: Bump singer-python version to solve issues with float validation --- .gitignore | 3 +++ .secrets/.gitignore | 6 ++++++ setup.py | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .secrets/.gitignore diff --git a/.gitignore b/.gitignore index b9dbe7f..002d22b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ __pycache__/ *.py[cod] *$py.class +# Mac +.DS_Store + # C extensions *.so diff --git a/.secrets/.gitignore b/.secrets/.gitignore new file mode 100644 index 0000000..e76051e --- /dev/null +++ b/.secrets/.gitignore @@ -0,0 +1,6 @@ +# IMPORTANT! This folder is hidden from git - if you need to store config files or other secrets, +# make sure those are never staged for commit into your git repo. You can store them here or another +# secure location. + +* +!.gitignore diff --git a/setup.py b/setup.py index 3652235..763e1d3 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='target-csv', - version='0.3.3', + version='0.3.4', description='Singer.io target for writing CSV files', author='Stitch', url='https://singer.io', @@ -11,7 +11,7 @@ py_modules=['target_csv'], install_requires=[ 'jsonschema==2.6.0', - 'singer-python>=5.1.0,<=5.3.1', + 'singer-python==5.12.1', ], entry_points=''' [console_scripts]