Skip to content

Commit

Permalink
Added fsfat back-end log2timeline#580
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Aug 22, 2022
1 parent 704a348 commit b4d5dab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
from distutils.command.sdist import sdist

version_tuple = (sys.version_info[0], sys.version_info[1])
if version_tuple < (3, 6):
if version_tuple < (3, 7):
print((
'Unsupported Python version: {0:s}, version 3.6 or higher '
'Unsupported Python version: {0:s}, version 3.7 or higher '
'required.').format(sys.version))
sys.exit(1)

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{6,7,8,9,10},coverage,docs,lint
envlist = py3{7,8,9,10},coverage,docs,lint

[testenv]
pip_pre = True
Expand All @@ -10,7 +10,7 @@ deps =
-rtest_requirements.txt
coverage: coverage
commands =
py3{6,7,8,9,10}: ./run_tests.py
py3{7,8,9,10}: ./run_tests.py
coverage: coverage erase
coverage: coverage run --source=dfvfs --omit="*_test*,*__init__*,*test_lib*" run_tests.py

Expand Down

0 comments on commit b4d5dab

Please sign in to comment.