packages/python/python-rencode/remove-wheel.patch
Alexander Baldeck 257c394be0 * updates & rebuilds for:
* Python 3.10
  * Protobuf 3.19
  * ICU 70.1
  * boost 1.78.0
  * FFMPEG 5.0
2022-01-31 17:18:05 +01:00

21 lines
622 B
Diff

From 16e61e1ff4294bddb7c881536d3d454355c78969 Mon Sep 17 00:00:00 2001
From: Louis Sautier <sautier.louis@gmail.com>
Date: Sun, 8 Aug 2021 23:38:04 +0200
Subject: [PATCH] Remove unnecessary wheel dependency (#30)
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 023df09..6445c0a 100644
--- a/setup.py
+++ b/setup.py
@@ -92,5 +92,5 @@ def _unavailable(self, exc):
url="https://github.com/aresch/rencode",
cmdclass={'build_ext': optional_build_ext},
ext_modules=ext_modules,
- setup_requires=['setuptools', 'wheel'],
+ setup_requires=['setuptools'],
)