From c1f1833eebb8da4fb25ce2ee41af6a3cf60a0e6f Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Wed, 11 Dec 2019 15:19:54 +0100 Subject: [PATCH] Updated for version 3.7.3 Signed-off-by: Dimitris Zlatanidis --- ChangeLog.txt | 9 ++++++--- README.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- slpkg/__metadata__.py | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 6e5d55a0..faedc89c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,6 +1,9 @@ -3.7.3 - 06/12/2019 -Fixed: -- code style to python3 compatibility +3.7.3 - 11/12/2019 +FIxed: +- Bugfix: Slackware-current from Alien Bob 20191130 #119 +- Improving call class methods for reposiory updating +- Replace requests dependency with urllib3 +- Code style to python3 compatibility 3.7.2 - 06/12/2019 Fixed: diff --git a/README.md b/README.md index caa40f30..22382b34 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# slpkg 3.7.2 +# slpkg 3.7.3 Slpkg is a powerful software package manager that installs, updates, and removes packages on [Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and diff --git a/requirements.txt b/requirements.txt index 2edcd05f..8eeb20f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,4 +11,4 @@ # perl 5 language and graph-easy >= 0.75 (drawing dependencies ascii diagram) # python3-pythondialog >= 3.5.0 (Python interface to the UNIX dialog utility) -python-requests >= 2.22.0 +urllib3 >= 1.25.7 diff --git a/setup.py b/setup.py index 25e90606..4896a5ad 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ except ImportError: docs_requires = [] tests_requires = [] install_requires = [ - "requests>=2.22.0" + "urllib3>=1.25.7" ] optional_requires = [ "pythondialog>=3.5.0", diff --git a/slpkg/__metadata__.py b/slpkg/__metadata__.py index bda10ff3..0f7f19d6 100644 --- a/slpkg/__metadata__.py +++ b/slpkg/__metadata__.py @@ -78,7 +78,7 @@ class MetaData: __all__ = "slpkg" __author__ = "dslackw" - __version_info__ = (3, 7, 2) + __version_info__ = (3, 7, 3) __version__ = "{0}.{1}.{2}".format(*__version_info__) __license__ = "GNU General Public License v3 (GPLv3)" __email__ = "d.zlatanidis@gmail.com"