Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pylint-ignore for 
openSUSE:Factory checked in at 2022-08-03 21:16:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pylint-ignore (Old)
 and      /work/SRC/openSUSE:Factory/.python-pylint-ignore.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pylint-ignore"

Wed Aug  3 21:16:44 2022 rev:2 rq:992426 version:2022.1025

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-pylint-ignore/python-pylint-ignore.changes    
    2022-02-24 18:24:10.274647261 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pylint-ignore.new.1533/python-pylint-ignore.changes
      2022-08-03 21:17:00.291490390 +0200
@@ -1,0 +2,9 @@
+Wed Aug  3 05:32:29 UTC 2022 - Steve Kowalik <steven.kowa...@suse.com>
+
+- Update to 2022.1025:
+  * Pin pylint to <2.13
+- Add patch no-more-pathlib2.patch:
+  * Use pathlib rather than pathlib2.
+- Drop {Build,}Requires on pathlib2 
+
+-------------------------------------------------------------------

Old:
----
  pylint-ignore-2021.1024.tar.gz

New:
----
  no-more-pathlib2.patch
  pylint-ignore-2022.1025.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pylint-ignore.spec ++++++
--- /var/tmp/diff_new_pack.kh5BpC/_old  2022-08-03 21:17:01.187492741 +0200
+++ /var/tmp/diff_new_pack.kh5BpC/_new  2022-08-03 21:17:01.195492762 +0200
@@ -18,23 +18,23 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pylint-ignore
-Version:        2021.1024
+Version:        2022.1025
 Release:        0
 Summary:        Start with silence, not with noise But do start!
 License:        MIT
 URL:            https://github.com/mbarkhau/pylint-ignore
 Source:         
https://files.pythonhosted.org/packages/source/p/pylint-ignore/pylint-ignore-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM gh#mbarkhau/pylint-ignore#15
+Patch0:         no-more-pathlib2.patch
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  python-rpm-macros
 # SECTION test requirements
-BuildRequires:  %{python_module pathlib2}
 BuildRequires:  %{python_module pylev}
 BuildRequires:  %{python_module pylint > 2.4}
 BuildRequires:  %{python_module pytest}
 # /SECTION
 BuildRequires:  fdupes
 Requires:       python-astroid > 2.1.0
-Requires:       python-pathlib2
 Requires:       python-pylev
 Requires:       python-pylint > 2.4
 BuildArch:      noarch
@@ -48,7 +48,7 @@
 source code itself. It's similar to Rupocop's .rubocop_todo.yml.
 
 %prep
-%setup -q -n pylint-ignore-%{version}
+%autosetup -p1 -n pylint-ignore-%{version}
 
 %build
 %python_build

++++++ no-more-pathlib2.patch ++++++
>From 16370c44b65acf5e53c4d27a9ce298ca25df6fc6 Mon Sep 17 00:00:00 2001
From: Steve Kowalik <ste...@wedontsleep.org>
Date: Wed, 3 Aug 2022 15:03:39 +1000
Subject: [PATCH] Remove use of pathlib2

pathlib has been included in the Python standard library since 3.4,
and since the lowest supported version of Python is now above that, we
can remove the external dependency and use pathlib directly. As a
drive-by, also remove a bunch of __future__ imports.
---
 requirements/pypi.txt           | 1 -
 setup.cfg                       | 2 +-
 src/pylint_ignore/__main__.py   | 2 +-
 src/pylint_ignore/ignorefile.py | 2 +-
 test/test_ignorefile.py         | 7 +------
 test/test_main.py               | 7 +------
 6 files changed, 5 insertions(+), 16 deletions(-)

diff --git a/requirements/pypi.txt b/requirements/pypi.txt
index e652814..392001a 100644
--- a/requirements/pypi.txt
+++ b/requirements/pypi.txt
@@ -9,5 +9,4 @@
 
 astroid>2.1.0
 pylint<2.13
-pathlib2
 pylev
diff --git a/src/pylint_ignore/__main__.py b/src/pylint_ignore/__main__.py
index f17c12b..03021a5 100755
--- a/src/pylint_ignore/__main__.py
+++ b/src/pylint_ignore/__main__.py
@@ -23,8 +23,8 @@
 import functools as ft
 import subprocess as sp
 import multiprocessing as mp
+import pathlib as pl
 
-import pathlib2 as pl
 import pylint.lint
 from pylint.lint.pylinter import PyLinter
 
diff --git a/src/pylint_ignore/ignorefile.py b/src/pylint_ignore/ignorefile.py
index a26139b..df2c5a7 100644
--- a/src/pylint_ignore/ignorefile.py
+++ b/src/pylint_ignore/ignorefile.py
@@ -9,9 +9,9 @@
 import hashlib
 import logging
 import collections
+import pathlib as pl
 
 import pylev
-import pathlib2 as pl
 
 logger = logging.getLogger('pylint_ignore')
 
diff --git a/test/test_ignorefile.py b/test/test_ignorefile.py
index d7835a4..5b4fd3f 100644
--- a/test/test_ignorefile.py
+++ b/test/test_ignorefile.py
@@ -2,18 +2,13 @@
 # pylint:disable=redefined-outer-name ; pytest.fixture tmp_ignorefile
 # pylint:disable=protected-access ; ok for testing
 
-from __future__ import division
-from __future__ import print_function
-from __future__ import absolute_import
-from __future__ import unicode_literals
-
 import os
 import time
 import shutil
 import textwrap
+import pathlib as pl
 
 import pytest
-import pathlib2 as pl
 
 from pylint_ignore import ignorefile
 
diff --git a/test/test_main.py b/test/test_main.py
index f224a6e..5215bc7 100644
--- a/test/test_main.py
+++ b/test/test_main.py
@@ -2,17 +2,12 @@
 # pylint:disable=redefined-outer-name ; pytest.fixture ignore_file
 # pylint:disable=protected-access ; ok for testing
 
-from __future__ import division
-from __future__ import print_function
-from __future__ import absolute_import
-from __future__ import unicode_literals
-
 import os
 import sys
 import shutil
+import pathlib as pl
 
 import pytest
-import pathlib2 as pl
 
 import pylint_ignore.__main__ as main
 

++++++ pylint-ignore-2021.1024.tar.gz -> pylint-ignore-2022.1025.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-ignore-2021.1024/LICENSE 
new/pylint-ignore-2022.1025/LICENSE
--- old/pylint-ignore-2021.1024/LICENSE 2021-12-14 20:51:45.000000000 +0100
+++ new/pylint-ignore-2022.1025/LICENSE 2022-07-15 22:10:34.000000000 +0200
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2020-2021 Manuel Barkhau (mbark...@gmail.com)
+Copyright (c) 2020-2022 Manuel Barkhau (mbark...@gmail.com)
 
 Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-ignore-2021.1024/PKG-INFO 
new/pylint-ignore-2022.1025/PKG-INFO
--- old/pylint-ignore-2021.1024/PKG-INFO        2021-12-14 20:52:26.865660400 
+0100
+++ new/pylint-ignore-2022.1025/PKG-INFO        2022-07-15 22:10:37.419365400 
+0200
@@ -1,13 +1,12 @@
 Metadata-Version: 2.1
 Name: pylint-ignore
-Version: 2021.1024
+Version: 2022.1025
 Summary: Start with silence, not with noise. But do start!
 Home-page: https://github.com/mbarkhau/pylint-ignore
 Author: Manuel Barkhau
 Author-email: mbark...@gmail.com
 License: MIT
 Keywords: pylint ignore noise flake8 pep8 linter
-Platform: UNKNOWN
 Classifier: Development Status :: 4 - Beta
 Classifier: Environment :: Console
 Classifier: Environment :: Other Environment
@@ -44,7 +43,7 @@
 
 [![MIT License][license_img]][license_ref]
 [![Supported Python Versions][pyversions_img]][pyversions_ref]
-[![CalVer 2021.1024][version_img]][version_ref]
+[![CalVer 2022.1025][version_img]][version_ref]
 [![PyPI Version][pypi_img]][pypi_ref]
 [![PyPI Downloads][downloads_img]][downloads_ref]
 
@@ -183,7 +182,7 @@
 
 ```yaml
   - repo: https://github.com/mbarkhau/pylint-ignore
-    rev: 2021.1020
+    rev: "2021.1024"
     hooks:
       - id: pylint-ignore
 ```
@@ -390,7 +389,7 @@
 [downloads_img]: https://pepy.tech/badge/pylint-ignore/month
 [downloads_ref]: https://pepy.tech/project/pylint-ignore
 
-[version_img]: 
https://img.shields.io/static/v1.svg?label=CalVer&message=2021.1024&color=blue
+[version_img]: 
https://img.shields.io/static/v1.svg?label=CalVer&message=2022.1025&color=blue
 [version_ref]: https://pypi.org/project/pycalver/
 
 [pyversions_img]: https://img.shields.io/pypi/pyversions/pylint-ignore.svg
@@ -484,5 +483,3 @@
 ## 2020.1003
 
 - Initial release
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-ignore-2021.1024/README.md 
new/pylint-ignore-2022.1025/README.md
--- old/pylint-ignore-2021.1024/README.md       2021-12-14 20:51:45.000000000 
+0100
+++ new/pylint-ignore-2022.1025/README.md       2022-07-15 22:10:34.000000000 
+0200
@@ -15,7 +15,7 @@
 
 [![MIT License][license_img]][license_ref]
 [![Supported Python Versions][pyversions_img]][pyversions_ref]
-[![CalVer 2021.1024][version_img]][version_ref]
+[![CalVer 2022.1025][version_img]][version_ref]
 [![PyPI Version][pypi_img]][pypi_ref]
 [![PyPI Downloads][downloads_img]][downloads_ref]
 
@@ -154,7 +154,7 @@
 
 ```yaml
   - repo: https://github.com/mbarkhau/pylint-ignore
-    rev: 2021.1020
+    rev: "2021.1024"
     hooks:
       - id: pylint-ignore
 ```
@@ -361,7 +361,7 @@
 [downloads_img]: https://pepy.tech/badge/pylint-ignore/month
 [downloads_ref]: https://pepy.tech/project/pylint-ignore
 
-[version_img]: 
https://img.shields.io/static/v1.svg?label=CalVer&message=2021.1024&color=blue
+[version_img]: 
https://img.shields.io/static/v1.svg?label=CalVer&message=2022.1025&color=blue
 [version_ref]: https://pypi.org/project/pycalver/
 
 [pyversions_img]: https://img.shields.io/pypi/pyversions/pylint-ignore.svg
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/fixtures/pylint-ignore.md_original.md 
new/pylint-ignore-2022.1025/fixtures/pylint-ignore.md_original.md
--- old/pylint-ignore-2021.1024/fixtures/pylint-ignore.md_original.md   
1970-01-01 01:00:00.000000000 +0100
+++ new/pylint-ignore-2022.1025/fixtures/pylint-ignore.md_original.md   
2022-07-15 22:08:28.000000000 +0200
@@ -0,0 +1,177 @@
+# Pylint-Ignore
+
+**WARNING: This file is programatically generated.**
+
+This file is parsed by 
[`pylint-ignore`](https://pypi.org/project/pylint-ignore/)
+to determine which
+[Pylint 
messages](https://pylint.pycqa.org/en/stable/technical_reference/features.html)
+should be ignored.
+
+- Do not edit this file manually.
+- To update, use `pylint-ignore --update-ignorefile`
+
+The recommended approach to using `pylint-ignore` is:
+
+1. If a message refers to a valid issue, update your code rather than
+   ignoring the message.
+2. If a message should *always* be ignored (globally), then to do so
+   via the usual `pylintrc` or `setup.cfg` files rather than this
+   `pylint-ignore.md` file.
+3. If a message is a false positive, add a comment of this form to your code:
+   `# pylint:disable=<symbol> ; explain why this is a false positive`
+
+
+# Overview
+
+ - [E0102: function-redefined (2x)](#e0102-function-redefined)
+ - [E0602: undefined-variable (4x)](#e0602-undefined-variable)
+ - [C0103: invalid-name (2x)](#c0103-invalid-name)
+ - [C0303: trailing-whitespace (1x)](#c0303-trailing-whitespace)
+
+# E0102: function-redefined
+
+## File fixtures/fixture_1.py - Line 4 - E0102 (function-redefined)
+
+- `message: function already defined line 1`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+  2:     return 1
+  3:
+> 4: def function_redefined():
+  5:     return 1
+  6:
+```
+
+
+## File fixtures/fixture_2.py - Line 4 - E0102 (function-redefined)
+
+- `message: function already defined line 1`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+  2:     return 1
+  3:
+> 4: def function_redefined():
+  5:     return 1
+  6:
+```
+
+
+# E0602: undefined-variable
+
+## File fixtures/fixture_1.py - Line 10 - E0602 (undefined-variable)
+
+- `message: Undefined variable 'Entry'`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+   7: def code_duplication():
+  ...
+   8:     msg_id_count = {}
+   9:
+> 10:     def _entry_sort_key(e: Entry):
+  11:         frequency = -msg_id_count[e.msg_id]
+  12:         return frequency, e.msg_id
+```
+
+
+## File fixtures/fixture_2.py - Line 10 - E0602 (undefined-variable)
+
+- `message: Undefined variable 'Entry'`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+   7: def code_duplication():
+  ...
+   8:     msg_id_count = {}
+   9:
+> 10:     def _entry_sort_key(e: Entry):
+  11:         frequency = -msg_id_count[e.msg_id]
+  12:         return frequency, e.msg_id
+```
+
+
+## File fixtures/fixture_1.py - Line 14 - E0602 (undefined-variable)
+
+- `message: Undefined variable 'entries'`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+   7: def code_duplication():
+  ...
+  12:         return frequency, e.msg_id
+  13:
+> 14:     return sorted(entries, key=_entry_sort_key)
+```
+
+
+## File fixtures/fixture_2.py - Line 14 - E0602 (undefined-variable)
+
+- `message: Undefined variable 'entries'`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+   7: def code_duplication():
+  ...
+  12:         return frequency, e.msg_id
+  13:
+> 14:     return sorted(entries, key=_entry_sort_key)
+```
+
+
+# C0103: invalid-name
+
+## File fixtures/fixture_1.py - Line 10 - C0103 (invalid-name)
+
+- `message: Argument name "e" doesn't conform to snake_case naming style`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+   7: def code_duplication():
+  ...
+   8:     msg_id_count = {}
+   9:
+> 10:     def _entry_sort_key(e: Entry):
+  11:         frequency = -msg_id_count[e.msg_id]
+  12:         return frequency, e.msg_id
+```
+
+
+## File fixtures/fixture_2.py - Line 10 - C0103 (invalid-name)
+
+- `message: Argument name "e" doesn't conform to snake_case naming style`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2020-07-25T18:38:38`
+
+```
+   7: def code_duplication():
+  ...
+   8:     msg_id_count = {}
+   9:
+> 10:     def _entry_sort_key(e: Entry):
+  11:         frequency = -msg_id_count[e.msg_id]
+  12:         return frequency, e.msg_id
+```
+
+
+# C0303: trailing-whitespace
+
+## File fixtures/fixture_3.py - Line 2 - C0303 (trailing-whitespace)
+
+- `message: Trailing whitespace`
+- `author : Manuel Barkhau <mbark...@gmail.com>`
+- `date   : 2021-06-24T16:20:28`
+
+```
+  1: def repro():
+> 2:    
+  3:    return
+```
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-ignore-2021.1024/requirements/pypi.txt 
new/pylint-ignore-2022.1025/requirements/pypi.txt
--- old/pylint-ignore-2021.1024/requirements/pypi.txt   2021-12-14 
19:13:13.000000000 +0100
+++ new/pylint-ignore-2022.1025/requirements/pypi.txt   2022-07-15 
22:09:07.000000000 +0200
@@ -8,6 +8,6 @@
 # should see if there is a conda package that suits your needs.
 
 astroid>2.1.0
-pylint
+pylint<2.13
 pathlib2
 pylev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-ignore-2021.1024/setup.cfg 
new/pylint-ignore-2022.1025/setup.cfg
--- old/pylint-ignore-2021.1024/setup.cfg       2021-12-14 20:52:26.869660400 
+0100
+++ new/pylint-ignore-2022.1025/setup.cfg       2022-07-15 22:10:37.419365400 
+0200
@@ -61,7 +61,7 @@
 addopts = --doctest-modules
 
 [bumpver]
-current_version = 2021.1024
+current_version = 2022.1025
 version_pattern = "YYYY.BUILD[PYTAGNUM]"
 commit = True
 tag = True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-ignore-2021.1024/setup.py 
new/pylint-ignore-2022.1025/setup.py
--- old/pylint-ignore-2021.1024/setup.py        2021-12-14 20:51:45.000000000 
+0100
+++ new/pylint-ignore-2022.1025/setup.py        2022-07-15 22:10:34.000000000 
+0200
@@ -55,7 +55,7 @@
     author="Manuel Barkhau",
     author_email="mbark...@gmail.com",
     url="https://github.com/mbarkhau/pylint-ignore";,
-    version="2021.1024",
+    version="2022.1025",
     keywords="pylint ignore noise flake8 pep8 linter",
     description="Start with silence, not with noise. But do start!",
     long_description=long_description,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore/__init__.py 
new/pylint-ignore-2022.1025/src/pylint_ignore/__init__.py
--- old/pylint-ignore-2021.1024/src/pylint_ignore/__init__.py   2021-12-14 
20:51:45.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore/__init__.py   2022-07-15 
22:10:34.000000000 +0200
@@ -1,7 +1,7 @@
 # This file is part of the pylint-ignore project
 # https://github.com/mbarkhau/pylint-ignore
 #
-# Copyright (c) 2020-2021 Manuel Barkhau (mbark...@gmail.com) - MIT License
+# Copyright (c) 2020-2022 Manuel Barkhau (mbark...@gmail.com) - MIT License
 # SPDX-License-Identifier: MIT
 
-__version__ = "2021.1024"
+__version__ = "2022.1025"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore/__main__.py 
new/pylint-ignore-2022.1025/src/pylint_ignore/__main__.py
--- old/pylint-ignore-2021.1024/src/pylint_ignore/__main__.py   2021-12-14 
20:51:45.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore/__main__.py   2022-07-15 
22:10:34.000000000 +0200
@@ -2,7 +2,7 @@
 # This file is part of the pylint-ignore project
 # https://github.com/mbarkhau/pylint-ignore
 #
-# Copyright (c) 2020-2021 Manuel Barkhau (mbark...@gmail.com) - MIT License
+# Copyright (c) 2020-2022 Manuel Barkhau (mbark...@gmail.com) - MIT License
 # SPDX-License-Identifier: MIT
 """CLI for pylint-ignore.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore/ignorefile.py 
new/pylint-ignore-2022.1025/src/pylint_ignore/ignorefile.py
--- old/pylint-ignore-2021.1024/src/pylint_ignore/ignorefile.py 2021-12-14 
20:51:45.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore/ignorefile.py 2022-07-15 
22:10:34.000000000 +0200
@@ -1,7 +1,7 @@
 # This file is part of the pylint-ignore project
 # https://github.com/mbarkhau/pylint-ignore
 #
-# Copyright (c) 2020-2021 Manuel Barkhau (mbark...@gmail.com) - MIT License
+# Copyright (c) 2020-2022 Manuel Barkhau (mbark...@gmail.com) - MIT License
 # SPDX-License-Identifier: MIT
 import re
 import shutil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/PKG-INFO 
new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/PKG-INFO
--- old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/PKG-INFO     
2021-12-14 20:52:26.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/PKG-INFO     
2022-07-15 22:10:37.000000000 +0200
@@ -1,13 +1,12 @@
 Metadata-Version: 2.1
 Name: pylint-ignore
-Version: 2021.1024
+Version: 2022.1025
 Summary: Start with silence, not with noise. But do start!
 Home-page: https://github.com/mbarkhau/pylint-ignore
 Author: Manuel Barkhau
 Author-email: mbark...@gmail.com
 License: MIT
 Keywords: pylint ignore noise flake8 pep8 linter
-Platform: UNKNOWN
 Classifier: Development Status :: 4 - Beta
 Classifier: Environment :: Console
 Classifier: Environment :: Other Environment
@@ -44,7 +43,7 @@
 
 [![MIT License][license_img]][license_ref]
 [![Supported Python Versions][pyversions_img]][pyversions_ref]
-[![CalVer 2021.1024][version_img]][version_ref]
+[![CalVer 2022.1025][version_img]][version_ref]
 [![PyPI Version][pypi_img]][pypi_ref]
 [![PyPI Downloads][downloads_img]][downloads_ref]
 
@@ -183,7 +182,7 @@
 
 ```yaml
   - repo: https://github.com/mbarkhau/pylint-ignore
-    rev: 2021.1020
+    rev: "2021.1024"
     hooks:
       - id: pylint-ignore
 ```
@@ -390,7 +389,7 @@
 [downloads_img]: https://pepy.tech/badge/pylint-ignore/month
 [downloads_ref]: https://pepy.tech/project/pylint-ignore
 
-[version_img]: 
https://img.shields.io/static/v1.svg?label=CalVer&message=2021.1024&color=blue
+[version_img]: 
https://img.shields.io/static/v1.svg?label=CalVer&message=2022.1025&color=blue
 [version_ref]: https://pypi.org/project/pycalver/
 
 [pyversions_img]: https://img.shields.io/pypi/pyversions/pylint-ignore.svg
@@ -484,5 +483,3 @@
 ## 2020.1003
 
 - Initial release
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/SOURCES.txt 
new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/SOURCES.txt
--- old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/SOURCES.txt  
2021-12-14 20:52:26.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/SOURCES.txt  
2022-07-15 22:10:37.000000000 +0200
@@ -9,6 +9,7 @@
 fixtures/fixture_2.py
 fixtures/fixture_3.py
 fixtures/pylint-ignore.md
+fixtures/pylint-ignore.md_original.md
 requirements/pypi.txt
 src/pylint_ignore/__init__.py
 src/pylint_ignore/__main__.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/entry_points.txt 
new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/entry_points.txt
--- old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/entry_points.txt     
2021-12-14 20:52:26.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/entry_points.txt     
2022-07-15 22:10:37.000000000 +0200
@@ -1,3 +1,2 @@
 [console_scripts]
 pylint-ignore = pylint_ignore.__main__:main
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/requires.txt 
new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/requires.txt
--- old/pylint-ignore-2021.1024/src/pylint_ignore.egg-info/requires.txt 
2021-12-14 20:52:26.000000000 +0100
+++ new/pylint-ignore-2022.1025/src/pylint_ignore.egg-info/requires.txt 
2022-07-15 22:10:37.000000000 +0200
@@ -1,4 +1,4 @@
 astroid>2.1.0
-pylint
+pylint<2.13
 pathlib2
 pylev

Reply via email to