Skip to content

Commit

Permalink
Merge pull request #4 from memory/fix-tilde-compare
Browse files Browse the repository at this point in the history
Fix tilde compare
  • Loading branch information
memory authored Nov 23, 2020
2 parents dc88cfb + 6923031 commit 1a7c022
Show file tree
Hide file tree
Showing 6 changed files with 284 additions and 250 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ __pycache__
MANIFEST
build/
dist/
.eggs
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
before_install:
- "pip install -U pip"
install:
- "pip install -e .[test]"
script:
- "py.test tests/"
- "pylint pydpkg/"
- "pep8 pydpkg/"
- "pylint -d R0912 -d W0511 pydpkg/"
- "pep8 --max-line-length=90 --ignore=E203 pydpkg/"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ This library can be used to:
on platforms that generally lack a native implementation of dpkg

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

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

0 comments on commit 1a7c022

Please sign in to comment.