mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-18 10:26:29 +01:00
Updated for version 3.7.3
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
d3fa8949b1
commit
c1f1833eeb
5 changed files with 10 additions and 7 deletions
|
@ -1,6 +1,9 @@
|
||||||
3.7.3 - 06/12/2019
|
3.7.3 - 11/12/2019
|
||||||
Fixed:
|
FIxed:
|
||||||
- code style to python3 compatibility
|
- 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
|
3.7.2 - 06/12/2019
|
||||||
Fixed:
|
Fixed:
|
||||||
|
|
|
@ -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
|
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
|
[Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and
|
||||||
|
|
|
@ -11,4 +11,4 @@
|
||||||
# perl 5 language and graph-easy >= 0.75 (drawing dependencies ascii diagram)
|
# perl 5 language and graph-easy >= 0.75 (drawing dependencies ascii diagram)
|
||||||
# python3-pythondialog >= 3.5.0 (Python interface to the UNIX dialog utility)
|
# python3-pythondialog >= 3.5.0 (Python interface to the UNIX dialog utility)
|
||||||
|
|
||||||
python-requests >= 2.22.0
|
urllib3 >= 1.25.7
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -37,7 +37,7 @@ except ImportError:
|
||||||
docs_requires = []
|
docs_requires = []
|
||||||
tests_requires = []
|
tests_requires = []
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"requests>=2.22.0"
|
"urllib3>=1.25.7"
|
||||||
]
|
]
|
||||||
optional_requires = [
|
optional_requires = [
|
||||||
"pythondialog>=3.5.0",
|
"pythondialog>=3.5.0",
|
||||||
|
|
|
@ -78,7 +78,7 @@ class MetaData:
|
||||||
|
|
||||||
__all__ = "slpkg"
|
__all__ = "slpkg"
|
||||||
__author__ = "dslackw"
|
__author__ = "dslackw"
|
||||||
__version_info__ = (3, 7, 2)
|
__version_info__ = (3, 7, 3)
|
||||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||||
__email__ = "d.zlatanidis@gmail.com"
|
__email__ = "d.zlatanidis@gmail.com"
|
||||||
|
|
Loading…
Reference in a new issue