Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dh-python
Manage
Activity
Members
Labels
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
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
Debian Python Team
tools
dh-python
Commits
a4bc2bc8
Commit
a4bc2bc8
authored
9 years ago
by
James Page
Committed by
Piotr Ożarowski
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
dhpython/pydist.py: Ensure that != dependency versions are ignored
parent
a9db46f9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+4
-0
4 additions, 0 deletions
debian/changelog
dhpython/pydist.py
+1
-1
1 addition, 1 deletion
dhpython/pydist.py
with
5 additions
and
1 deletion
debian/changelog
+
4
−
0
View file @
a4bc2bc8
...
...
@@ -21,6 +21,10 @@ dh-python (2.20160609) UNRELEASED; urgency=medium
* Standards-Version is 3.9.8 now (no changes needed)
* Changed Vcs-* URLs to https protocol
[ James Page ]
* dhpython/pydist.py: Ensure that != dependency versions are ignored
(LP: #1581065).
-- Piotr Ożarowski <piotr@debian.org> Thu, 18 Feb 2016 21:08:04 +0100
dh-python (2.20151103) unstable; urgency=medium
...
...
This diff is collapsed.
Click to expand it.
dhpython/pydist.py
+
1
−
1
View file @
a4bc2bc8
...
...
@@ -150,7 +150,7 @@ def guess_dependency(impl, req, version=None, bdep=None):
# Debian dependency
return
item
[
'
dependency
'
]
if
req_d
[
'
version
'
]
and
(
item
[
'
standard
'
]
or
item
[
'
rules
'
])
and
\
req_d
[
'
operator
'
]
not
in
(
None
,
'
==
'
):
req_d
[
'
operator
'
]
not
in
(
None
,
'
==
'
,
'
!=
'
):
v
=
_translate
(
req_d
[
'
version
'
],
item
[
'
rules
'
],
item
[
'
standard
'
])
return
"
%s (%s %s)
"
%
(
item
[
'
dependency
'
],
req_d
[
'
operator
'
],
v
)
else
:
...
...
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