Skip to content

Commit 1a7c022

Browse files
authored
Merge pull request #4 from memory/fix-tilde-compare
Fix tilde compare
2 parents dc88cfb + 6923031 commit 1a7c022

6 files changed

Lines changed: 284 additions & 250 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ __pycache__
88
MANIFEST
99
build/
1010
dist/
11+
.eggs

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ python:
66
- "3.6"
77
- "3.7"
88
- "3.8"
9+
- "3.9"
910
before_install:
1011
- "pip install -U pip"
1112
install:
1213
- "pip install -e .[test]"
1314
script:
1415
- "py.test tests/"
15-
- "pylint pydpkg/"
16-
- "pep8 pydpkg/"
16+
- "pylint -d R0912 -d W0511 pydpkg/"
17+
- "pep8 --max-line-length=90 --ignore=E203 pydpkg/"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ This library can be used to:
88
on platforms that generally lack a native implementation of dpkg
99

1010
2. compare dpkg version strings, using a pure Python implementation of
11-
the algorithm described at
12-
https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version
11+
the algorithm described in section 5.6.12 of the debian-policy manual:
12+
https://www.debian.org/doc/debian-policy/ch-controlfields.html#version
1313

1414
3. Parse debian source description (dsc) files, inspect their contents
1515
and verify that their source files are present and checksums are

0 commit comments

Comments
 (0)