Removed urllib3 as a dependency

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-02-06 19:23:35 +02:00
parent 84b36ff46b
commit 09f806c383
4 changed files with 4 additions and 11 deletions

View file

@ -2,6 +2,7 @@
Updated: Updated:
- Slackware mirrors - Slackware mirrors
- Copyright year - Copyright year
- urllib3 removed as a dependency it's part of Slackware now
3.9.1 - 01/01/2021 3.9.1 - 01/01/2021
Updated: Updated:

View file

@ -10,7 +10,5 @@
# pygraphviz >= 1.3.1 (drawing dependencies diagram) # pygraphviz >= 1.3.1 (drawing dependencies diagram)
# 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)
# flake8 >= 3.5.0
urllib3 >= 1.26.2 # pytest >= 5.3.2
flake8 >= 3.5.0
pytest >= 5.3.2

View file

@ -35,9 +35,7 @@ docs_requires = []
tests_requires = [ tests_requires = [
"pytest>=5.3.2" "pytest>=5.3.2"
] ]
install_requires = [ install_requires = []
"urllib3>=1.26.2"
]
optional_requires = [ optional_requires = [
"pythondialog>=3.5.1", "pythondialog>=3.5.1",
"pygraphviz>=1.3.1" "pygraphviz>=1.3.1"

View file

@ -4,10 +4,6 @@ computes dependencies and figures out what things should occur
to install packages. Slpkg makes it easier to maintain groups to install packages. Slpkg makes it easier to maintain groups
of machines without having to manually update. of machines without having to manually update.
Hard dependencies:
python3, python-urllib3
Optional dependencies: Optional dependencies:
python3-pythondialog (for dialog box interface) python3-pythondialog (for dialog box interface)
pygraphviz (for drawing dependencies diagram) pygraphviz (for drawing dependencies diagram)