Skip to content

Commit

Permalink
fix version file path
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Oct 8, 2024
1 parent f120366 commit ad28b37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "CI"
run-name: "CI - ${{ github.actor }} - ${{ github.event_name }}"
run-name: "CI - ${{ github.event_name }} - ${{ github.actor }}"

on:
pull_request:
Expand Down Expand Up @@ -39,6 +39,7 @@ jobs:
name: "Unit tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
Expand Down
2 changes: 1 addition & 1 deletion dbt-athena-community/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ include = ["dbt"]
packages = ["dbt"]

[tool.hatch.version]
path = "dbt/adapters/athena/__version__.py"
path = "src/dbt/adapters/athena/__version__.py"

[tool.hatch.envs.default]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion dbt-athena/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ include = ["dbt"]
packages = ["dbt"]

[tool.hatch.version]
path = "dbt/adapters/athena/__version__.py"
path = "src/dbt/adapters/athena/__version__.py"

[tool.hatch.envs.default]
dependencies = [
Expand Down

0 comments on commit ad28b37

Please sign in to comment.