Skip to content

Commit

Permalink
simplify the shell package for dbt-athena-community
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Oct 10, 2024
1 parent 2a327ec commit cbf29f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions dbt-athena-community/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[project]
dynamic = ["version"]
name = "dbt-athena-community"
description = "The athena adapter plugin for dbt (data build tool)"
readme = "../README.md"
Expand All @@ -23,7 +22,8 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies=["dbt-athena @ {root:uri}/../dbt-athena"]
dependencies = ["dbt-athena @ {root:uri}/../dbt-athena"]
version = "1.8.4"
[project.urls]
Homepage = "https://github.com/dbt-labs/dbt-athena/dbt-athena"
Documentation = "https://docs.getdbt.com"
Expand All @@ -43,9 +43,6 @@ packages = ["src/dbt"]
[tool.hatch.metadata]
allow-direct-references = true

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

[tool.hatch.envs.default]
dependencies = [
"dbt-tests-adapter~=1.9.2",
Expand Down Expand Up @@ -84,11 +81,13 @@ check-wheel = [
"twine check dist/*",
"find ./dist/dbt_athena_community-*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/",
"pip freeze | grep dbt-athena-community",
"pip freeze | grep dbt-athena",
]
check-sdist = [
"check-wheel-contents dist/*.whl --ignore W007,W008",
"find ./dist/dbt_athena_community-*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/",
"pip freeze | grep dbt-athena-community",
"pip freeze | grep dbt-athena",
]

[tool.pytest]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# this is a shell package that allows us to publish dbt-athena as dbt-athena-community

This file was deleted.

0 comments on commit cbf29f6

Please sign in to comment.