diff --git a/requirements_dev.txt b/requirements_dev.txt index 354b814..9a1f1ac 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -7,6 +7,7 @@ coverage==7.9.2 twine==6.1.0 ruff==0.12.3 pytest==8.4.1 +netcdf4==1.7.3 torchvision torch huggingface_hub diff --git a/src/adam/__init__.py b/src/adam/__init__.py index d3afaaa..07852eb 100644 --- a/src/adam/__init__.py +++ b/src/adam/__init__.py @@ -1,6 +1,6 @@ """Top-level package for ATMOS Analogue Digital Twin.""" -__author__ = """Robert Jackson, Bhupendra Raut, Seongha Park""" +__author__ = """Robert Jackson, Bhupendra Raut, Seongha Park, Troy Arcomano, Scott Collis""" __version__ = '0.4.0' diff --git a/tests/test_adaptive_scanning.py b/tests/test_adaptive_scanning.py index a460146..2b214eb 100644 --- a/tests/test_adaptive_scanning.py +++ b/tests/test_adaptive_scanning.py @@ -33,7 +33,7 @@ def test_make_scan_file(): assert line == expected_line, f"Line {i} does not match expected output.\nGot: {line}\nExpected: {expected_line}" def test_send_scan(): - from adam.triggering.halo_lidar import send_scanpy + from adam.triggering.halo_lidar import send_scan from adam.testing import TEST_RHI_FILE from adam.testing.fake_lidar import FakeSSHClient lidar_ip_addr = None @@ -116,4 +116,4 @@ def test_trigger_lidar_rhi_from_mask(): assert line == expected_line, f"Line {i} does not match expected output.\nGot: {line}\nExpected: {expected_line}" os.remove('test_scan_rhi_lakebreeze_copy.txt') os.remove('test_scan_rhi_lakebreeze.txt') - os.remove('test_scan_rhi.txt') \ No newline at end of file + os.remove('test_scan_rhi.txt')