From 24bbfec556081edff9540ab2c49f905d08378db0 Mon Sep 17 00:00:00 2001 From: Emily Soth Date: Thu, 22 May 2025 11:18:47 -0700 Subject: [PATCH] misc cleanup --- requirements.txt | 2 +- tests/test_delineateit.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 275f6c72d..ecf73b4dd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,7 +17,7 @@ numpy>=1.11.0,!=1.16.0 Rtree>=0.8.2,!=0.9.1 shapely>=2.0.0 scipy>=1.9.0,!=1.12.* -pygeoprocessing==2.4.7 +pygeoprocessing>=2.4.6 taskgraph>=0.11.0 psutil>=5.6.6 chardet>=3.0.4 diff --git a/tests/test_delineateit.py b/tests/test_delineateit.py index 7a9ea4124..9915d71e3 100644 --- a/tests/test_delineateit.py +++ b/tests/test_delineateit.py @@ -7,7 +7,6 @@ import shutil import tempfile import unittest from unittest import mock -import pytest import numpy import pygeoprocessing @@ -25,6 +24,7 @@ REGRESSION_DATA = os.path.join( os.path.dirname(__file__), '..', 'data', 'invest-test-data', 'delineateit') + @contextlib.contextmanager def capture_logging(logger, level=logging.NOTSET): """Capture logging within a context manager.