mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Updated for version 4.0.1
This commit is contained in:
parent
79c619beba
commit
c357e7b4c8
5 changed files with 14 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
# GNU coreutils
|
||||
# sqlite3
|
||||
# progress
|
||||
# SQLAlchemy
|
||||
#
|
||||
# [OPTIONAL]
|
||||
# aria2 (alternative downloader)
|
||||
|
|
5
setup.py
5
setup.py
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue