From a8874e4b77720e33e56bb26e6276833a5e5c3572 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 05:27:09 +0000 Subject: [PATCH 1/2] Bump aiohttp from 3.13.3 to 3.14.1 --- updated-dependencies: - dependency-name: aiohttp dependency-version: 3.14.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fe5930b1..3b1d497a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ keywords = [ "PV", ] dependencies = [ - "aiohttp==3.13.3", + "aiohttp==3.14.1", "numpy>=1.19.3", "pvlib>=0.12.0", "scipy>1.6.0", From f69af91dd94f022b4d8d990566c2e9aa323ad1ef Mon Sep 17 00:00:00 2001 From: Daxini Date: Thu, 25 Jun 2026 18:04:07 -0600 Subject: [PATCH 2/2] trying to fix 0.1 degree error (rounding?) --- tutorials/01_basics/04_weather_database_access.ipynb | 11 +++++++++-- .../01_basics/scripts/04_weather_database_access.py | 9 ++++++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/tutorials/01_basics/04_weather_database_access.ipynb b/tutorials/01_basics/04_weather_database_access.ipynb index 6251ae29..7469ab8b 100644 --- a/tutorials/01_basics/04_weather_database_access.ipynb +++ b/tutorials/01_basics/04_weather_database_access.ipynb @@ -274,7 +274,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": { "execution": { "iopub.execute_input": "2025-12-03T15:42:18.187172Z", @@ -321,7 +321,14 @@ " x_0=6.5,\n", " wind_factor=0.33,\n", ")\n", - "print(pvdeg.standards.interpret_standoff(res))\n", + "\n", + "# Print rounded numeric outputs for testing\n", + "res_clean = {\n", + " \"x_cm\": round(float(res[\"x\"].iloc[0]), 1),\n", + " \"T98_0_C\": round(float(res[\"T98_0\"].iloc[0]), 1),\n", + " \"T98_inf_C\": round(float(res[\"T98_inf\"].iloc[0]), 1),\n", + "}\n", + "print(res_clean)\n", "\n", "# Clean metadata for consistent output (remove variable fields)\n", "meta_clean = {k: v for k, v in meta.items() if k not in [\"irradiance_time_offset\"]}\n", diff --git a/tutorials/01_basics/scripts/04_weather_database_access.py b/tutorials/01_basics/scripts/04_weather_database_access.py index a44296fa..806aa3b7 100644 --- a/tutorials/01_basics/scripts/04_weather_database_access.py +++ b/tutorials/01_basics/scripts/04_weather_database_access.py @@ -175,7 +175,14 @@ x_0=6.5, wind_factor=0.33, ) -print(pvdeg.standards.interpret_standoff(res)) + +# Print rounded numeric outputs for testing +res_clean = { + "x_cm": round(float(res["x"].iloc[0]), 1), + "T98_0_C": round(float(res["T98_0"].iloc[0]), 1), + "T98_inf_C": round(float(res["T98_inf"].iloc[0]), 1), +} +print(res_clean) # Clean metadata for consistent output (remove variable fields) meta_clean = {k: v for k, v in meta.items() if k not in ["irradiance_time_offset"]}