Skip to content

Commit

Permalink
skip tests on 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Mar 6, 2025
1 parent 006bb47 commit 1ab7d0f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modflow_devtools/make_registry.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
import argparse
import hashlib
import sys
from pathlib import Path

import pytest
import tomli_w as tomli

from modflow_devtools.misc import get_model_paths
from modflow_devtools.models import BASE_URL, DATA_PATH

REGISTRY_PATH = DATA_PATH / "registry.txt"

# TODO: Remove when we drop support for python 3.9 (soon?)
if sys.version_info[:2] == (3, 9):
pytest.skip("Unsupported for python 3.9", allow_module_level=True)


def _sha256(path: Path) -> str:
"""
Expand Down

0 comments on commit 1ab7d0f

Please sign in to comment.