Skip to content

Commit

Permalink
/* PR_START p--release-setup 01 */ Update pyproject.toml files to u…
Browse files Browse the repository at this point in the history
…se a dynamic version configuration.
  • Loading branch information
plypaul committed Jan 16, 2025
1 parent 1c13ddd commit f861c49
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions dbt-metricflow/dbt_metricflow/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from __future__ import annotations

__version__ = "0.7.0"
6 changes: 4 additions & 2 deletions dbt-metricflow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ build-backend = "hatchling.build"

[project]
name = "dbt-metricflow"
version = "0.7.0"
description = "Execute commands against the MetricFlow semantic layer with dbt."
readme = "README.md"
requires-python = ">=3.8,<3.13"
Expand All @@ -26,7 +25,10 @@ classifiers = [
]

# Dependencies are specified through the `hatch-requirements-txt` plug-in.
dynamic = ["dependencies", "optional-dependencies"]
dynamic = ["version", "dependencies", "optional-dependencies"]

[tool.hatch.version]
path = "dbt_metricflow/__about__.py"

[tool.hatch.metadata.hooks.requirements_txt]
files = [
Expand Down
3 changes: 3 additions & 0 deletions metricflow/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from __future__ import annotations

__version__ = "0.207.0.dev2"
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ build-backend = "hatchling.build"

[project]
name = "metricflow"
version = "0.207.0"
description = "Translates a simple metric definition into reusable SQL and executes it against the SQL engine of your choice."
readme = "README.md"
requires-python = ">=3.9,<3.13"
Expand All @@ -26,7 +25,10 @@ classifiers = [
]

# Dependencies are specified through the `hatch-requirements-txt` plug-in.
dynamic = ["dependencies", "optional-dependencies"]
dynamic = ["version", "dependencies", "optional-dependencies"]

[tool.hatch.version]
path = "metricflow/__about__.py"

[tool.hatch.metadata.hooks.requirements_txt]
files = [
Expand Down

0 comments on commit f861c49

Please sign in to comment.