Skip to content
Snippets Groups Projects
Commit 9e89f04d authored by Shachar Ohana's avatar Shachar Ohana
Browse files

#250 - Review fixes

parent caedeb4d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,15 +6,15 @@ import sys
version = '2.0.1rc'
 
 
REQUIRES = [
'snowballstemmer',
'six',
]
requirements = [
'snowballstemmer',
'six',
]
 
 
# Python3 to Python2 backport support.
if sys.version_info[0] == 2:
REQUIRES.append('configparser == 3.5.0')
requirements.append('configparser')
 
 
setup(
Loading
Loading
@@ -38,7 +38,7 @@ setup(
packages=('pydocstyle',),
package_dir={'': 'src'},
package_data={'pydocstyle': ['data/*.txt']},
install_requires=REQUIRES,
install_requires=requirements,
entry_points={
'console_scripts': [
'pydocstyle = pydocstyle.cli:main',
Loading
Loading
Loading
Loading
@@ -278,7 +278,7 @@ def test_sectionless_config_file(env):
 
 
def test_multiple_lined_config_file(env):
"""Blah."""
"""Test that .ini files with multi-lined entries are parsed correctly."""
with env.open('example.py', 'wt') as example:
example.write(textwrap.dedent("""\
class Foo(object):
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment