Updated for version 4.0.1

This commit is contained in:
Dimitris Zlatanidis 2022-05-30 21:53:02 +03:00
parent 79c619beba
commit c357e7b4c8
5 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,7 @@
4.0.1 - 29/05/2022
Added:
- SQLAlchemy Object Relational Mapper
4.0.0 - 29/05/2022
Added:
- sqlite3 database replaced the sbo repository

View file

@ -1,5 +1,5 @@
***********
slpkg 4.0.0
slpkg 4.0.1
***********
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-4.0.0.tar.gz
$ tar xvf slpkg-4.0.0.tar.gz
$ cd slpkg-4.0.0
$ wget slpkg-4.0.1.tar.gz
$ tar xvf slpkg-4.0.1.tar.gz
$ cd slpkg-4.0.1
$ ./install.sh

View file

@ -4,6 +4,7 @@
# GNU coreutils
# sqlite3
# progress
# SQLAlchemy
#
# [OPTIONAL]
# aria2 (alternative downloader)

View file

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

View file

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