From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 68F8B1382C5 for ; Tue, 2 Jun 2020 04:28:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A5E6E08FB; Tue, 2 Jun 2020 04:28:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0249BE08FB for ; Tue, 2 Jun 2020 04:28:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2188734F0E7 for ; Tue, 2 Jun 2020 04:28:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33B6F291 for ; Tue, 2 Jun 2020 04:28:21 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1591072081.b63ae5681b75df390552ec553044c9dfb1cf56da.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parver/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/parver/files/parver-0.2.1-gentoo-versioning.patch X-VCS-Directories: dev-python/parver/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: b63ae5681b75df390552ec553044c9dfb1cf56da X-VCS-Branch: master Date: Tue, 2 Jun 2020 04:28:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1778167e-39dd-41ee-ad4b-ad33995ade87 X-Archives-Hash: f8421619e4f4bc9d75f01dcd351cacad commit: b63ae5681b75df390552ec553044c9dfb1cf56da Author: Michael Mair-Keimberger gmail com> AuthorDate: Tue May 19 19:22:52 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue Jun 2 04:28:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b63ae568 dev-python/parver: remove unused patch Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Aaron Bauman gentoo.org> .../files/parver-0.2.1-gentoo-versioning.patch | 29 ---------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/parver/files/parver-0.2.1-gentoo-versioning.patch b/dev-python/parver/files/parver-0.2.1-gentoo-versioning.patch deleted file mode 100644 index a2cae61afa4..00000000000 --- a/dev-python/parver/files/parver-0.2.1-gentoo-versioning.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff --git a/setup.py b/setup.py -index c5c2492..8f5c8c7 100644 ---- a/setup.py -+++ b/setup.py -@@ -18,9 +18,9 @@ LONG_DESC = open('README.rst', encoding='utf-8').read() - - extras_require = { - 'test': [ -- 'pytest ~= 3.5', -- 'hypothesis ~= 3.56', -- 'pretend ~= 1.0', -+ 'pytest >= 3.5', -+ 'hypothesis >= 3.56', -+ 'pretend >= 1.0', - ], - 'docstest': [ - 'doc8', -@@ -49,9 +49,9 @@ setup( - packages=find_packages('src'), - package_dir={'': 'src'}, - install_requires=[ -- 'arpeggio ~= 1.7', -+ 'arpeggio >= 1.7', - 'attrs >= 17.4.0', -- 'six ~= 1.9', -+ 'six >= 1.9', - ], - extras_require=extras_require, - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',