py-aio-pika: fix pattern in setup.py

This commit is contained in:
wiz 2023-02-20 08:42:13 +00:00
parent 4fba6c9593
commit c111a6731a
2 changed files with 17 additions and 1 deletions

View file

@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.9 2021/10/26 11:06:33 nia Exp $
$NetBSD: distinfo,v 1.10 2023/02/20 08:42:13 wiz Exp $
BLAKE2s (aio-pika-6.7.1.tar.gz) = e2556ff68962b2f87c9487485ab8071cd2e9f30718a66ff63110053e5baeb731
SHA512 (aio-pika-6.7.1.tar.gz) = 060319dee14995523dd32eb6e2689b0c37a83aae15e40b2f9f23a53f4ae5599757a5fa99e13170a4a9c399e1972d040242c879e76cef83dd926b0e9782b945ad
Size (aio-pika-6.7.1.tar.gz) = 31071 bytes
SHA1 (patch-setup.py) = f82de6e16f699739df751c3a42470ae16a17752d

View file

@ -0,0 +1,15 @@
$NetBSD: patch-setup.py,v 1.1 2023/02/20 08:42:13 wiz Exp $
Fix pattern.
--- setup.py.orig 2020-09-02 20:35:34.000000000 +0000
+++ setup.py
@@ -39,7 +39,7 @@ setup(
packages=find_packages(exclude=["tests"]),
package_data={"aio_pika": ["py.typed"]},
install_requires=["aiormq>=3.2.3,<4", "yarl"],
- python_requires=">3.5.*, <4",
+ python_requires=">3.5, <4",
extras_require={
"develop": [
"aiomisc~=10.1.6",