From 1de9c64af6810c81298faf5f080957b635c137d8 Mon Sep 17 00:00:00 2001 From: rpm-build Date: Mon, 2 Mar 2020 17:26:59 +0100 Subject: [PATCH] Remove versioning There's really no need to keep versioning information in the requirements.txt, as it would be interpreted in a way by the Python auto requires scripts as requiring specific (and unavailable) versions of various Python modules. Any later incompatibility can be expressed in the RPM spec file directly, if needed. --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index dedaed3..82f4e52 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -urllib3>=1.24.2,<2.0.0 -six<2.0.0 -requests>=2.19.1,<3.0.0 -python-slugify<2.0.0 +urllib3 +six +requests +python-slugify -- 2.25.1