Skip to content

Commit 24c3457

Browse files
authored
[CHORE] Version bump for release (#1489)
1 parent 3ff61fe commit 24c3457

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

neuralforecast/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
__version__ = "3.1.5"
1+
from importlib.metadata import version
2+
3+
__version__ = version("neuralforecast")
24
__all__ = ['NeuralForecast']
35
from .common._base_model import DistributedConfig # noqa: F401
46
from .core import NeuralForecast

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "neuralforecast"
7-
dynamic = ["version"]
7+
version = "3.1.6"
88
description = "Time series forecasting suite using deep learning models"
99
authors = [
1010
{name = "Nixtla", email = "business@nixtla.io"}
@@ -66,9 +66,6 @@ dev = [
6666
Homepage = "https://github.com/Nixtla/neuralforecast/"
6767
Documentation = "https://nixtlaverse.nixtla.io/neuralforecast/"
6868

69-
[tool.setuptools.dynamic]
70-
version = {attr = "neuralforecast.__version__"}
71-
7269
[tool.setuptools]
7370
packages = ["neuralforecast"]
7471

0 commit comments

Comments
 (0)