Hello community,
here is the log from the commit of package python-restructuredtext_lint for
openSUSE:Factory checked in at 2019-01-03 18:08:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-restructuredtext_lint (Old)
and /work/SRC/openSUSE:Factory/.python-restructuredtext_lint.new.28833
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-restructuredtext_lint"
Thu Jan 3 18:08:29 2019 rev:3 rq:662430 version:1.2.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-restructuredtext_lint/python-restructuredtext_lint.changes
2018-12-24 11:43:30.773339302 +0100
+++
/work/SRC/openSUSE:Factory/.python-restructuredtext_lint.new.28833/python-restructuredtext_lint.changes
2019-01-03 18:08:32.200038630 +0100
@@ -1,0 +2,12 @@
+Wed Jan 2 12:00:58 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Add patch to build with python 3.7:
+ * python37.patch
+
+-------------------------------------------------------------------
+Wed Jan 2 11:54:41 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.2.1:
+ * Added directory support via @dhruvsomani in #48. Fixes #38
+
+-------------------------------------------------------------------
Old:
----
restructuredtext_lint-1.1.3.tar.gz
New:
----
python37.patch
restructuredtext_lint-1.2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-restructuredtext_lint.spec ++++++
--- /var/tmp/diff_new_pack.6AGtsj/_old 2019-01-03 18:08:32.876038031 +0100
+++ /var/tmp/diff_new_pack.6AGtsj/_new 2019-01-03 18:08:32.880038026 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-restructuredtext_lint
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,20 +18,20 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-restructuredtext_lint
-Version: 1.1.3
+Version: 1.2.1
Release: 0
Summary: Linter for reStructuredText
License: Unlicense
Group: Development/Languages/Python
Url: https://github.com/twolfson/restructuredtext-lint
Source:
https://files.pythonhosted.org/packages/source/r/restructuredtext_lint/restructuredtext_lint-%{version}.tar.gz
+Patch0: python37.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module PyYAML}
BuildRequires: %{python_module docutils >= 0.11}
-BuildRequires: %{python_module nose}
# /SECTION
Requires: python-PyYAML
Requires: python-docutils >= 0.11
@@ -48,6 +48,7 @@
%prep
%setup -q -n restructuredtext_lint-%{version}
+%patch0 -p1
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
%build
@@ -59,7 +60,7 @@
%check
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}
-$python -B -m nose
+$python -m unittest discover
}
%files %{python_files}
++++++ python37.patch ++++++
Index: restructuredtext_lint-1.2.1/restructuredtext_lint/test/test.py
===================================================================
--- restructuredtext_lint-1.2.1.orig/restructuredtext_lint/test/test.py
+++ restructuredtext_lint-1.2.1/restructuredtext_lint/test/test.py
@@ -11,12 +11,12 @@ import yaml
import restructuredtext_lint
-__dir__ = os.path.dirname(os.path.abspath(__file__))
-valid_rst = os.path.join(__dir__, 'test_files', 'valid.rst')
-warning_rst = os.path.join(__dir__, 'test_files', 'second_short_heading.rst')
-dir_rst = os.path.join(__dir__, 'test_files', 'dir')
-invalid_rst = os.path.join(__dir__, 'test_files', 'invalid.rst')
-rst_lint_path = os.path.join(__dir__, os.pardir, 'cli.py')
+_dir = os.path.dirname(os.path.abspath(__file__))
+valid_rst = os.path.join(_dir, 'test_files', 'valid.rst')
+warning_rst = os.path.join(_dir, 'test_files', 'second_short_heading.rst')
+dir_rst = os.path.join(_dir, 'test_files', 'dir')
+invalid_rst = os.path.join(_dir, 'test_files', 'invalid.rst')
+rst_lint_path = os.path.join(_dir, os.pardir, 'cli.py')
"""
# TODO: Implement this as a class (options) with a sugar function that lints a
string against a set of options
@@ -51,7 +51,7 @@ class TestRestructuredtextLint(TestCase)
actual_errors = self._lint_file(content, invalid_rst)
# Load in expected errors
- expected_yaml = self._load_file(os.path.join(__dir__, 'test_files',
'invalid.yaml'))
+ expected_yaml = self._load_file(os.path.join(_dir, 'test_files',
'invalid.yaml'))
expected_errors = yaml.load(expected_yaml)
# Assert errors against expected errors
@@ -65,7 +65,7 @@ class TestRestructuredtextLint(TestCase)
def test_encoding_utf8(self):
"""A document with utf-8 characters is valid."""
- filepath = os.path.join(__dir__, 'test_files', 'utf8.rst')
+ filepath = os.path.join(_dir, 'test_files', 'utf8.rst')
errors = restructuredtext_lint.lint_file(filepath, encoding='utf-8')
self.assertEqual(errors, [])
@@ -74,7 +74,7 @@ class TestRestructuredtextLint(TestCase)
This is a regression test for
https://github.com/twolfson/restructuredtext-lint/issues/5
"""
- filepath = os.path.join(__dir__, 'test_files',
'second_short_heading.rst')
+ filepath = os.path.join(_dir, 'test_files', 'second_short_heading.rst')
errors = restructuredtext_lint.lint_file(filepath)
self.assertEqual(errors[0].line, 6)
self.assertEqual(errors[0].source, filepath)
@@ -84,7 +84,7 @@ class TestRestructuredtextLint(TestCase)
This is a regression test for
https://github.com/twolfson/restructuredtext-lint/issues/6
"""
- filepath = os.path.join(__dir__, 'test_files', 'invalid_target.rst')
+ filepath = os.path.join(_dir, 'test_files', 'invalid_target.rst')
errors = restructuredtext_lint.lint_file(filepath)
self.assertIn('Unknown target name', errors[0].message)
@@ -93,7 +93,7 @@ class TestRestructuredtextLint(TestCase)
This is a regression test for
https://github.com/twolfson/restructuredtext-lint/issues/7
"""
- filepath = os.path.join(__dir__, 'test_files',
'invalid_line_mismatch.rst')
+ filepath = os.path.join(_dir, 'test_files',
'invalid_line_mismatch.rst')
errors = restructuredtext_lint.lint_file(filepath)
self.assertIn('Title overline & underline mismatch', errors[0].message)
@@ -102,7 +102,7 @@ class TestRestructuredtextLint(TestCase)
This is a regression test for
https://github.com/twolfson/restructuredtext-lint/issues/12
"""
- filepath = os.path.join(__dir__, 'test_files', 'invalid_link.rst')
+ filepath = os.path.join(_dir, 'test_files', 'invalid_link.rst')
errors = restructuredtext_lint.lint_file(filepath)
self.assertIn('Anonymous hyperlink mismatch: 1 references but 0
targets.', errors[0].message)
self.assertIn('Hyperlink target "hello" is not referenced.',
errors[1].message)
++++++ restructuredtext_lint-1.1.3.tar.gz -> restructuredtext_lint-1.2.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/restructuredtext_lint-1.1.3/.travis.yml
new/restructuredtext_lint-1.2.1/.travis.yml
--- old/restructuredtext_lint-1.1.3/.travis.yml 2017-07-27 06:30:16.000000000
+0200
+++ new/restructuredtext_lint-1.2.1/.travis.yml 2018-11-14 07:37:14.000000000
+0100
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- - "3.3"
- "3.4"
- "3.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/restructuredtext_lint-1.1.3/CHANGELOG.rst
new/restructuredtext_lint-1.2.1/CHANGELOG.rst
--- old/restructuredtext_lint-1.1.3/CHANGELOG.rst 2018-02-24
20:44:46.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/CHANGELOG.rst 2018-11-14
07:37:43.000000000 +0100
@@ -1,5 +1,9 @@
restructuredtext-lint changelog
===============================
+1.2.1 - Dropped Python 3.3 from Travis CI to fix testing errors
+
+1.2.0 - Added directory support via @dhruvsomani in #48. Fixes #38
+
1.1.3 - Updated documentation and typos via @jwilk in #44 and #45
1.1.2 - Replaced Gittip with support me page
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/restructuredtext_lint-1.1.3/PKG-INFO
new/restructuredtext_lint-1.2.1/PKG-INFO
--- old/restructuredtext_lint-1.1.3/PKG-INFO 2018-02-24 20:45:44.000000000
+0100
+++ new/restructuredtext_lint-1.2.1/PKG-INFO 2018-11-14 07:38:00.000000000
+0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: restructuredtext_lint
-Version: 1.1.3
+Version: 1.2.1
Summary: reStructuredText linter
Home-page: https://github.com/twolfson/restructuredtext-lint
Author: Todd Wolfson
@@ -49,13 +49,14 @@
$ rst-lint --help
usage: rst-lint [-h] [--version] [--format {text,json}]
[--encoding ENCODING]
[--level {debug,info,warning,error,severe}]
- filepath [filepath ...]
+ [--rst-prolog RST_PROLOG]
+ path [path ...]
Lint reStructuredText files. Returns 0 if all files pass linting,
1 for an
internal error, and 2 if linting failed.
positional arguments:
- filepath File to lint
+ path File/folder to lint
optional arguments:
-h, --help show this help message and exit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/restructuredtext_lint-1.1.3/README.rst
new/restructuredtext_lint-1.2.1/README.rst
--- old/restructuredtext_lint-1.1.3/README.rst 2018-02-24 20:38:37.000000000
+0100
+++ new/restructuredtext_lint-1.2.1/README.rst 2018-11-14 07:06:31.000000000
+0100
@@ -40,13 +40,14 @@
$ rst-lint --help
usage: rst-lint [-h] [--version] [--format {text,json}] [--encoding
ENCODING]
[--level {debug,info,warning,error,severe}]
- filepath [filepath ...]
+ [--rst-prolog RST_PROLOG]
+ path [path ...]
Lint reStructuredText files. Returns 0 if all files pass linting, 1 for an
internal error, and 2 if linting failed.
positional arguments:
- filepath File to lint
+ path File/folder to lint
optional arguments:
-h, --help show this help message and exit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint/VERSION
new/restructuredtext_lint-1.2.1/restructuredtext_lint/VERSION
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint/VERSION
2018-02-24 20:45:39.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint/VERSION
2018-11-14 07:37:49.000000000 +0100
@@ -1 +1 @@
-1.1.3
+1.2.1
Binary files old/restructuredtext_lint-1.1.3/restructuredtext_lint/__init__.pyc
and new/restructuredtext_lint-1.2.1/restructuredtext_lint/__init__.pyc differ
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/__pycache__/__init__.cpython-34.pyc
and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/__pycache__/__init__.cpython-34.pyc
differ
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/__pycache__/cli.cpython-34.pyc
and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/__pycache__/cli.cpython-34.pyc
differ
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/__pycache__/lint.cpython-34.pyc
and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/__pycache__/lint.cpython-34.pyc
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint/cli.py
new/restructuredtext_lint-1.2.1/restructuredtext_lint/cli.py
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint/cli.py
2017-07-27 06:09:44.000000000 +0200
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint/cli.py
2018-11-14 07:06:31.000000000 +0100
@@ -33,10 +33,22 @@
# Define our CLI function
-def _main(filepaths, format=DEFAULT_FORMAT, stream=sys.stdout, encoding=None,
level=LEVEL_MAP[DEFAULT_LEVEL_KEY],
+def _main(paths, format=DEFAULT_FORMAT, stream=sys.stdout, encoding=None,
level=LEVEL_MAP[DEFAULT_LEVEL_KEY],
**kwargs):
error_dicts = []
error_occurred = False
+ filepaths = []
+
+ for path in paths:
+ # Check if the given path is a file or a directory
+ if os.path.isfile(path):
+ filepaths.append(path)
+ else:
+ # Recurse over subdirectories to search for *.rst files
+ for root, subdir, files in os.walk(path):
+ for file in files:
+ if file.endswith('.rst'):
+ filepaths.append(os.path.join(root, file))
for filepath in filepaths:
# Read and lint the file
@@ -73,7 +85,7 @@
parser = argparse.ArgumentParser(description='Lint reStructuredText files.
Returns 0 if all files pass linting, '
'1 for an internal error, and 2 if
linting failed.')
parser.add_argument('--version', action='version', version=VERSION)
- parser.add_argument('filepaths', metavar='filepath', nargs='+', type=str,
help='File to lint')
+ parser.add_argument('paths', metavar='path', nargs='+', type=str,
help='File/folder to lint')
parser.add_argument('--format', default=DEFAULT_FORMAT, type=str,
choices=('text', 'json'),
help='Format of the output (default:
"{default}")'.format(default=DEFAULT_FORMAT))
parser.add_argument('--encoding', type=str, help='Encoding of the input
file (e.g. "utf-8")')
Binary files old/restructuredtext_lint-1.1.3/restructuredtext_lint/cli.pyc and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/cli.pyc differ
Binary files old/restructuredtext_lint-1.1.3/restructuredtext_lint/lint.pyc and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/lint.pyc differ
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/__init__.pyc and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/__init__.pyc differ
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/__pycache__/__init__.cpython-34.pyc
and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/__pycache__/__init__.cpython-34.pyc
differ
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/__pycache__/test.cpython-34.pyc
and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/__pycache__/test.cpython-34.pyc
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test.py
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test.py
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test.py
2018-02-24 20:38:37.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test.py
2018-11-14 07:06:31.000000000 +0100
@@ -14,6 +14,7 @@
__dir__ = os.path.dirname(os.path.abspath(__file__))
valid_rst = os.path.join(__dir__, 'test_files', 'valid.rst')
warning_rst = os.path.join(__dir__, 'test_files', 'second_short_heading.rst')
+dir_rst = os.path.join(__dir__, 'test_files', 'dir')
invalid_rst = os.path.join(__dir__, 'test_files', 'invalid.rst')
rst_lint_path = os.path.join(__dir__, os.pardir, 'cli.py')
@@ -169,6 +170,14 @@
output = str(raw_output)
self.assertEqual(output, '')
+ def test_rst_lint_folder(self):
+ """The `rst-lint` command should print errors for files inside
folders."""
+ with self.assertRaises(subprocess.CalledProcessError) as e:
+ subprocess.check_output((sys.executable, rst_lint_path, dir_rst),
universal_newlines=True)
+ output = str(e.exception.output)
+ # Verify exactly 1 error is produced
+ self.assertEqual(output.count('WARNING'), 1)
+
def test_rst_lint_many_files(self):
"""The `rst-lint` command accepts many rst file paths and prints
respective information for each of them."""
with self.assertRaises(subprocess.CalledProcessError) as e:
Binary files
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test.pyc and
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test.pyc differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test_files/dir/subdir/invalid.rst
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test_files/dir/subdir/invalid.rst
---
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test_files/dir/subdir/invalid.rst
1970-01-01 01:00:00.000000000 +0100
+++
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test_files/dir/subdir/invalid.rst
2018-11-14 07:06:31.000000000 +0100
@@ -0,0 +1,3 @@
+Hello
+====
+World
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test_files/dir/valid.rst
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test_files/dir/valid.rst
---
old/restructuredtext_lint-1.1.3/restructuredtext_lint/test/test_files/dir/valid.rst
1970-01-01 01:00:00.000000000 +0100
+++
new/restructuredtext_lint-1.2.1/restructuredtext_lint/test/test_files/dir/valid.rst
2018-11-14 07:06:31.000000000 +0100
@@ -0,0 +1,3 @@
+Hello
+=====
+World
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/PKG-INFO
new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/PKG-INFO
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/PKG-INFO
2018-02-24 20:45:44.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/PKG-INFO
2018-11-14 07:38:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: restructuredtext-lint
-Version: 1.1.3
+Version: 1.2.1
Summary: reStructuredText linter
Home-page: https://github.com/twolfson/restructuredtext-lint
Author: Todd Wolfson
@@ -49,13 +49,14 @@
$ rst-lint --help
usage: rst-lint [-h] [--version] [--format {text,json}]
[--encoding ENCODING]
[--level {debug,info,warning,error,severe}]
- filepath [filepath ...]
+ [--rst-prolog RST_PROLOG]
+ path [path ...]
Lint reStructuredText files. Returns 0 if all files pass linting,
1 for an
internal error, and 2 if linting failed.
positional arguments:
- filepath File to lint
+ path File/folder to lint
optional arguments:
-h, --help show this help message and exit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/SOURCES.txt
new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/SOURCES.txt
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/SOURCES.txt
2018-02-24 20:45:44.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/SOURCES.txt
2018-11-14 07:38:00.000000000 +0100
@@ -22,18 +22,12 @@
restructuredtext_lint.egg-info/dependency_links.txt
restructuredtext_lint.egg-info/entry_points.txt
restructuredtext_lint.egg-info/not-zip-safe
-restructuredtext_lint.egg-info/pbr.json
restructuredtext_lint.egg-info/requires.txt
restructuredtext_lint.egg-info/top_level.txt
-restructuredtext_lint/__pycache__/__init__.cpython-34.pyc
-restructuredtext_lint/__pycache__/cli.cpython-34.pyc
-restructuredtext_lint/__pycache__/lint.cpython-34.pyc
restructuredtext_lint/test/__init__.py
restructuredtext_lint/test/__init__.pyc
restructuredtext_lint/test/test.py
restructuredtext_lint/test/test.pyc
-restructuredtext_lint/test/__pycache__/__init__.cpython-34.pyc
-restructuredtext_lint/test/__pycache__/test.cpython-34.pyc
restructuredtext_lint/test/test_files/invalid.rst
restructuredtext_lint/test/test_files/invalid.yaml
restructuredtext_lint/test/test_files/invalid_line_mismatch.rst
@@ -41,4 +35,6 @@
restructuredtext_lint/test/test_files/invalid_target.rst
restructuredtext_lint/test/test_files/second_short_heading.rst
restructuredtext_lint/test/test_files/utf8.rst
-restructuredtext_lint/test/test_files/valid.rst
\ No newline at end of file
+restructuredtext_lint/test/test_files/valid.rst
+restructuredtext_lint/test/test_files/dir/valid.rst
+restructuredtext_lint/test/test_files/dir/subdir/invalid.rst
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/pbr.json
new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/pbr.json
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/pbr.json
2018-02-24 20:45:44.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/pbr.json
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-{"is_release": false, "git_version": "65ce9d6"}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/requires.txt
new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/requires.txt
--- old/restructuredtext_lint-1.1.3/restructuredtext_lint.egg-info/requires.txt
2018-02-24 20:45:44.000000000 +0100
+++ new/restructuredtext_lint-1.2.1/restructuredtext_lint.egg-info/requires.txt
2018-11-14 07:38:00.000000000 +0100
@@ -1 +1 @@
-docutils>=0.11,<1.0
+docutils<1.0,>=0.11
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/restructuredtext_lint-1.1.3/setup.cfg
new/restructuredtext_lint-1.2.1/setup.cfg
--- old/restructuredtext_lint-1.1.3/setup.cfg 2018-02-24 20:45:44.000000000
+0100
+++ new/restructuredtext_lint-1.2.1/setup.cfg 2018-11-14 07:38:00.000000000
+0100
@@ -1,5 +1,4 @@
[egg_info]
tag_build =
tag_date = 0
-tag_svn_revision = 0