Skip to content

Commit

Permalink
Resolves #11: Bump singer-python version to solve issues with float v…
Browse files Browse the repository at this point in the history
…alidation
  • Loading branch information
hsyyid committed Sep 6, 2021
1 parent 52b2f7f commit a8f5188
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ __pycache__/
*.py[cod]
*$py.class

# Mac
.DS_Store

# C extensions
*.so

Expand Down
6 changes: 6 additions & 0 deletions .secrets/.gitignore
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
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',
classifiers=['Programming Language :: Python :: 3 :: Only'],
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]
Expand Down

0 comments on commit a8f5188

Please sign in to comment.