Skip to content

Commit

Permalink
chore: Use poetry-dynamic-versioning (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jun 19, 2024
1 parent 2e55a1e commit 8a57d49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -31,6 +33,7 @@ jobs:
- name: Install Poetry
run: |
pipx install poetry
pipx inject poetry poetry-dynamic-versioning
poetry --version
- name: Install dependencies
run: |
Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dbt-ext"
version = "0.1.0"
version = "0.0.0"
description = "`dbt-ext` is a Meltano utility extension."
authors = ["Meltano Team and Contributors"]
maintainers = ["Meltano Team and Contributors"]
Expand Down Expand Up @@ -38,9 +38,12 @@ pre-commit = "^2.20.0"
pytest = "^7.1.3"

[build-system]
requires = ["poetry-core==1.9.0"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core==1.9.0", "poetry-dynamic-versioning==1.4.0"]
build-backend = "poetry_dynamic_versioning.backend"

[tool.poetry.scripts]
dbt_extension = 'dbt_ext.main:app'
dbt_invoker = 'dbt_ext.pass_through:pass_through_cli'

[tool.poetry-dynamic-versioning]
enable = true

0 comments on commit 8a57d49

Please sign in to comment.