diff options
-rw-r--r-- | setup.py | 14 | ||||
-rw-r--r-- | test-requirements.txt | 2 | ||||
-rw-r--r-- | test/test_construct_extras.py | 2 |
3 files changed, 9 insertions, 9 deletions
@@ -49,15 +49,15 @@ setup( # These are all the drivers' dependencies. Optional dependencies are # listed as mandatory for the feature. 'otultra2': ['pyserial'], - 'otultraeasy': ['construct>=2.8,<2.9', 'pyserial'], - 'otverio2015': ['construct>=2.8,<2.9', 'python-scsi'], - 'otverioiq': ['construct>=2.8,<2.9', 'pyserial'], - 'fsinsulinx': ['construct>=2.8,<2.9', 'hidapi'], - 'fslibre': ['construct>=2.8,<2.9', 'hidapi'], + 'otultraeasy': ['construct==2.8.22', 'pyserial'], + 'otverio2015': ['construct==2.8.22', 'python-scsi'], + 'otverioiq': ['construct==2.8.22', 'pyserial'], + 'fsinsulinx': ['construct==2.8.22', 'hidapi'], + 'fslibre': ['construct==2.8.22', 'hidapi'], 'fsoptium': ['pyserial'], - 'fsprecisionneo': ['construct>=2.8,<2.9', 'hidapi'], + 'fsprecisionneo': ['construct==2.8.22', 'hidapi'], 'accucheck_reports': [], - 'sdcodefree': ['construct>=2.8,<2.9', 'pyserial'], + 'sdcodefree': ['construct==2.8.22', 'pyserial'], }, entry_points = { 'console_scripts': [ diff --git a/test-requirements.txt b/test-requirements.txt index b1dd11d..b0ee2ff 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,5 +1,5 @@ absl-py -construct>=2.8,<2.9 +construct==2.8.22 pytest pytest-timeout pyserial diff --git a/test/test_construct_extras.py b/test/test_construct_extras.py index 66da5b7..b0cd1c3 100644 --- a/test/test_construct_extras.py +++ b/test/test_construct_extras.py @@ -51,7 +51,7 @@ class TestTimestamp(unittest.TestCase): _TEST_DATE2) def test_build_custom_epoch_negative_failure(self): - with self.assertRaises(construct.core.FieldError): + with self.assertRaises(construct.core.FormatFieldError): construct_extras.Timestamp( construct.Int32ul, epoch=_NEW_EPOCH).build(_TEST_DATE1) |