Skip to content

Commit f0e1e6e

Browse files
authored
Use underscore instead of dash in setup.cfg (#171)
* Use underscore instead of dash in setup.cfg pypa/setuptools#4910 * disable some pylint warnings
1 parent ae50276 commit f0e1e6e

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
description-file = README.md
2+
description_file = README.md

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55

66
setup(name="singer-python",
7-
version='6.1.0',
7+
version='6.1.1',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],

singer/catalog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def write_catalog(catalog):
2020
# pylint: disable=too-many-instance-attributes
2121
class CatalogEntry():
2222

23+
# pylint: disable=too-many-positional-arguments
2324
def __init__(self, tap_stream_id=None, stream=None,
2425
key_properties=None, schema=None, replication_key=None,
2526
is_view=None, database=None, table=None, row_count=None,

singer/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Schema(): # pylint: disable=too-many-instance-attributes
3131
3232
'''
3333

34-
# pylint: disable=too-many-locals
34+
# pylint: disable=too-many-locals,too-many-positional-arguments
3535
def __init__(self, type=None, format=None, properties=None, items=None,
3636
selected=None, inclusion=None, description=None, minimum=None,
3737
maximum=None, exclusiveMinimum=None, exclusiveMaximum=None,

0 commit comments

Comments
 (0)