Skip to content
Snippets Groups Projects
Commit b07c27a0 authored by Marek Chrastina's avatar Marek Chrastina
Browse files

Serious bugs in pipdeptree, do not use it anymore

parent 6db51879
No related branches found
No related tags found
1 merge request!5requires.txt is not mandatory for metadata generator
Pipeline #9313 passed
......@@ -14,7 +14,7 @@ pycodestyle:
stage: test
image: it4innovations/docker-pycheck:latest
script:
- pycodestyle --max-line-length=100 *.py
- pycodestyle --max-line-length=100 --ignore=E265 *.py
pylint:
stage: test
......@@ -51,7 +51,10 @@ build:
Install test:
stage: check
image: it4innovations/docker-pypi:latest
before_script:
- virtualenv .venv
script:
- source .venv/bin/activate
- pip install dist/pipdeps*tar.gz
- pipdeps -l || true
- pipdeps -u
......
......@@ -4,6 +4,13 @@ Pipdeps shows/upgrades outdated packages with respect to existing dependencies.
Python 2.7 is required.
In principle, resolving dependencies and requirements of all packages and
their versions is easy. Unfortunately, computing resources of standard
computer may not be sufficient even for little group of packages/versions.
In an effort to decrease number of possibilities, we make some attempts to
solve partial tasks. On the other hands, it may lead to some unwanted
situations. Currently, package extras are not finished.
## Usage
```console
......
This diff is collapsed.
"""
pipdeps setup
"""
from setuptools import setup, find_packages
from distutils.core import setup
import setuptools # noqa
#from setuptools import setup, find_packages
setup(
name='pipdeps',
......@@ -19,7 +21,7 @@ setup(
author_email='support@it4i.cz',
url='https://code.it4i.cz/sccs/pip-deps',
license='GPLv3+',
packages=find_packages(),
packages=setuptools.find_packages(),
namespace_packages=['pipdeps'],
include_package_data=True,
zip_safe=False,
......@@ -28,8 +30,8 @@ setup(
setup_requires=['mustache', 'pystache', 'setuptools-git-version', 'setuptools-markdown'],
install_requires=[
'packaging',
'pipdeptree',
'tabulate',
'wheel',
],
entry_points={
'console_scripts': [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment