Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pip-deps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
pip-deps
Commits
b07c27a0
Commit
b07c27a0
authored
5 years ago
by
Marek Chrastina
Browse files
Options
Downloads
Patches
Plain Diff
Serious bugs in pipdeptree, do not use it anymore
parent
6db51879
No related branches found
No related tags found
1 merge request
!5
requires.txt is not mandatory for metadata generator
Pipeline
#9313
passed
5 years ago
Stage: test
Stage: build
Stage: check
Changes
4
Pipelines
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+4
-1
4 additions, 1 deletion
.gitlab-ci.yml
README.md
+7
-0
7 additions, 0 deletions
README.md
pipdeps/pipdeps.py
+934
-268
934 additions, 268 deletions
pipdeps/pipdeps.py
setup.py
+5
-3
5 additions, 3 deletions
setup.py
with
950 additions
and
272 deletions
.gitlab-ci.yml
+
4
−
1
View file @
b07c27a0
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
README.md
+
7
−
0
View file @
b07c27a0
...
...
@@ -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.
Click to expand it.
pipdeps/pipdeps.py
+
934
−
268
View file @
b07c27a0
This diff is collapsed.
Click to expand it.
setup.py
+
5
−
3
View file @
b07c27a0
"""
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
'
:
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment