Skip to content

Commit ef292ab

Browse files
author
lukpueh
authored
Merge pull request #201 from joshuagl/joshuagl/miscfixes
Miscellaneous minor fixes
2 parents 6664328 + 6717403 commit ef292ab

File tree

5 files changed

+6
-16
lines changed

5 files changed

+6
-16
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ that is provided, the better.
55

66
**Description of the changes being introduced by the pull request**:
77

8-
**Please verify and check that the pull request fulfills the following
8+
**Please verify and check that the pull request fulfils the following
99
requirements**:
1010

1111
- [ ] The code follows the [Code Style Guidelines](https://github.com/secure-systems-lab/code-style-guidelines#code-style-guidelines)

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ matrix:
1010
env: TOXENV=py35
1111
- python: "3.6"
1212
env: TOXENV=py36
13+
- python: "3.7"
14+
env: TOXENV=py37
15+
- python: "3.8"
16+
env: TOXENV=py38
1317

1418
install:
1519
- pip install -U tox coveralls

securesystemslib/exceptions.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,6 @@ class UnsupportedLibraryError(Error):
105105
pass
106106

107107

108-
# TODO: Consider removal alongside the compression functions.
109-
class DecompressionError(Error):
110-
"""Indicate that some error happened while decompressing a file."""
111-
112-
def __init__(self, exception):
113-
# Store the original exception.
114-
self.exception = exception
115-
116-
def __str__(self):
117-
# Show the original exception.
118-
return repr(self.exception)
119-
120-
121108
class InvalidNameError(Error):
122109
"""Indicate an error while trying to validate any type of named object."""
123110
pass

tests/test_interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
else:
4444
import mock
4545

46-
import securesystemslib.formats
4746
import securesystemslib.formats
4847
import securesystemslib.hash
4948
import securesystemslib.interface as interface

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py35, py36
7+
envlist = py27, py35, py36, py37, py38
88
skipsdist = True
99

1010
[testenv]

0 commit comments

Comments
 (0)