Updated for version 4.0.0

This commit is contained in:
Dimitris Zlatanidis 2022-05-29 19:47:58 +03:00
parent 1ea9e7b635
commit 272cddfb03
5 changed files with 13 additions and 6 deletions

View file

@ -1,3 +1,8 @@
4.0.0 - 29/05/2022
Added:
- sqlite3 database replaced the sbo repository
- python package 'progress' added as dependency
3.9.9 - 24/05/2022
Updated:
- Stderr error output to auto-install packages

View file

@ -1,5 +1,5 @@
***********
slpkg 3.9.9
slpkg 4.0.0
***********
Slpkg is a powerful software package manager that installs, updates, and removes packages on
@ -35,9 +35,9 @@ Install from the official third party `SBo repository <https://slackbuilds.org/r
.. code-block:: bash
$ wget slpkg-3.9.9.tar.gz
$ tar xvf slpkg-3.9.9.tar.gz
$ cd slpkg-3.9.9
$ wget slpkg-4.0.0.tar.gz
$ tar xvf slpkg-4.0.0.tar.gz
$ cd slpkg-4.0.0
$ ./install.sh

View file

@ -2,6 +2,8 @@
# Python 3.7+
# GNU wget
# GNU coreutils
# sqlite3
# progress
#
# [OPTIONAL]
# aria2 (alternative downloader)

View file

@ -33,7 +33,7 @@ except ImportError:
docs_requires = []
tests_requires = []
install_requires = []
install_requires = ["progress>=1.6"]
optional_requires = [
"pythondialog>=3.5.1",
"pygraphviz>=1.3.1"

View file

@ -81,7 +81,7 @@ class MetaData:
__all__ = "slpkg"
__author__ = "dslackw"
__version_info__ = (3, 9, 9)
__version_info__ = (4, 0, 0)
__version__ = "{0}.{1}.{2}".format(*__version_info__)
__license__ = "GNU General Public License v3 (GPLv3)"
__email__ = "d.zlatanidis@gmail.com"