Skip to content

Commit

Permalink
Remove 'not' from check as we want to skip if python version is below…
Browse files Browse the repository at this point in the history
… 3.8 (#162)

Co-authored-by: Michael Richard Mckinsey <mckinsey@quartz1148.llnl.gov>
  • Loading branch information
michaelmckinsey1 and Michael Richard Mckinsey committed May 14, 2024
1 parent 153dbf0 commit 9c53fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thicket/tests/test_model_extrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
except ImportError:
extrap_avail = False

if not sys.version_info < (3, 8):
if sys.version_info < (3, 8):
pytest.skip(
"requires python3.8 or greater to use extrap module", allow_module_level=True
)
Expand Down

0 comments on commit 9c53fd9

Please sign in to comment.