Skip to content

Commit b8d341c

Browse files
Merge pull request #3 from gregory-halverson-jpl/main
fixing dependency import tests
2 parents f1af3a7 + ba5ae94 commit b8d341c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
33

44
[project]
55
name = "daily-evapotranspiration-upscaling"
6-
version = "1.0.2"
6+
version = "1.0.3"
77
description = "Instantaneous/Daily Evapotranspiration Upscaling Utilities Python Package"
88
readme = "README.md"
99
authors = [

tests/test_import_dependencies.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
# List of dependencies
44
dependencies = [
5+
"dateutil", # python-dateutil is imported as dateutil
56
"numpy",
7+
"pandas",
68
"rasters",
7-
"solar_apparent_time"
9+
"solar_apparent_time", # solar-apparent-time is imported as solar_apparent_time
10+
"sun_angles", # sun-angles is imported as sun_angles
11+
"verma_net_radiation" # verma-net-radiation is imported as verma_net_radiation
812
]
913

1014
# Generate individual test functions for each dependency

0 commit comments

Comments
 (0)