From ff0a021e2eb2442c81d1257cbd2e0ec5d88251f7 Mon Sep 17 00:00:00 2001 From: Yangkang Date: Sat, 15 Aug 2026 19:51:29 -0500 Subject: [PATCH 1/4] update requirements --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4a837f1..442e288 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,10 +2,10 @@ joblib>=1.3.0 # geopandas>=0.11.1 # h3pandas>=0.2.3 matplotlib>=3.7.1 -numpy>=1.24.3, <2 +numpy>=1.24.3 pandas>=2.2.0 plotly>=5.9.0 -scikit_learn>=1.2.2, <1.6 +scikit_learn>=1.2.2 # watermark>=2.3.1 # xgboost>=1.7.6 scipy>=1.10.1 From 122fb7786396c93ca7053b182d27c6b64a1b81a8 Mon Sep 17 00:00:00 2001 From: Yangkang Date: Sat, 15 Aug 2026 20:20:00 -0500 Subject: [PATCH 2/4] allow py3.14; version number update --- setup.py | 2 +- stemflow/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 724c010..ba798f1 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ classifiers=[ "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", diff --git a/stemflow/version.py b/stemflow/version.py index bf78826..3d30a5f 100644 --- a/stemflow/version.py +++ b/stemflow/version.py @@ -1 +1 @@ -__version__ = "1.1.7" +__version__ = "1.1.8" From d9d257524276d9a8a785227183bc38756cb8aeeb Mon Sep 17 00:00:00 2001 From: Yangkang Date: Sat, 15 Aug 2026 20:22:46 -0500 Subject: [PATCH 3/4] update the py version that git workflow test on --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 274e176..c41d135 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.9", "3.11", "3.12", "3.13"] #future: "3.14" + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - name: Set Swap Space uses: pierotofy/set-swap-space@master From 8a051829943c5822399ca18e6ddaf99ae149069d Mon Sep 17 00:00:00 2001 From: Yangkang Date: Sat, 15 Aug 2026 21:07:28 -0500 Subject: [PATCH 4/4] debug github action --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index c41d135..51ede8d 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -33,7 +33,7 @@ jobs: - name: Run pytest run: | - pytest -n auto --cov --no-cov-on-fail --cov-report=term-missing:skip-covered --cov-report xml:coverage.xml -v + COVERAGE_CORE=ctrace pytest -n auto --cov --no-cov-on-fail --cov-report=term-missing:skip-covered --cov-report xml:coverage.xml -v timeout-minutes: 1000 # Set the timeout to 1.5 hours for this step - name: Upload coverage reports to Codecov