Skip to content

Commit 0d8d194

Browse files
authored
606 pin pyspark version in main (#607)
* update pyproject.toml and lock file for 4.0.1 * Updates version number and changelog * changelog update
1 parent 35c8944 commit 0d8d194

File tree

4 files changed

+35
-7
lines changed

4 files changed

+35
-7
lines changed

docs/sphinx/changelog/index.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Release Notes
22
=============
33

4+
0.5.3 - 2026-01-07
5+
-----------------------
6+
7+
Changed
8+
^^^^^^^
9+
- Pins PySpark to 4.0.1 in pyproject.toml
10+
- Fixes bug using ``drop_overlapping_assimilation_values`` in NWM operational fetching methods.
11+
- Fixes a bug in ``load_dataframe()``
12+
- Fixes a bug in unpacking metric results
13+
- Updates the Getting Started sphinx documentation
14+
15+
Added
16+
^^^^^
17+
- Check for missing location IDs when cloning from s3
18+
- Row level calculated fields for forecast lead time bins
19+
- Brier Score and Brier Skill Score metrics
20+
21+
422
0.5.2 - 2025-11-11
523
------------------
624

poetry.lock

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "teehr"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Tools for Exploratory Evaluation in Hydrologic Research"
55
authors = [
66
"RTI International",
@@ -29,7 +29,7 @@ h5py = ">=3.12.1,<4"
2929
pyarrow = ">=15.0.0,<21"
3030
httpx = ">=0.25.1,<1"
3131
pandas = ">=2.2.0,<3"
32-
pyspark = {extras = ["pandas-on-spark"], version = ">=4,<5"}
32+
pyspark = {extras = ["pandas-on-spark"], version = "4.0.1"}
3333
dataretrieval = ">=1.0.9,<2"
3434
numba = ">=0.60.0,<1"
3535
arch = ">=7.0.0,<8"

src/teehr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Initialize the TEEHR package."""
22
import warnings
33

4-
__version__ = "0.5.2"
4+
__version__ = "0.5.3"
55

66
with warnings.catch_warnings():
77
warnings.simplefilter("ignore", UserWarning)

0 commit comments

Comments
 (0)