Skip to content

Commit 2f9e080

Browse files
authored
[FEAT] v1.4.0 (#436)
1 parent 65a8bf4 commit 2f9e080

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up python
1717
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
1818
with:
19-
python-version: 3.9
19+
python-version: "3.10"
2020

2121
- name: Install dependencies
2222
run: pip install uv && uv pip install --system pre-commit

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: ['3.10', '3.11', '3.12', '3.13']
21+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2222
steps:
2323
- name: Clone repo
2424
uses: actions/checkout@v6.0.1

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hierarchicalforecast"
3-
version = "1.3.1"
3+
version = "1.4.0"
44
description = "Hierarchical Methods Time Series Forecasting"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
license = { text = "Apache Software License 2.0" }
@@ -9,14 +9,15 @@ authors = [
99
]
1010
keywords = ["time-series", "forecasting", "datasets", "hierarchical"]
1111
classifiers = [
12-
"Development Status :: 2 - Pre-Alpha",
12+
"Development Status :: 4 - Beta",
1313
"Intended Audience :: Developers",
1414
"Natural Language :: English",
1515
"License :: OSI Approved :: Apache Software License",
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
]
2122
requires-python = ">=3.10,<4.0"
2223
dependencies = [

0 commit comments

Comments
 (0)