File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,7 @@ classifiers = [
23
23
" Programming Language :: Python :: 3.11" ,
24
24
]
25
25
dependencies = [
26
- # install `psycopg2` on linux (assumed production)
27
- ' psycopg2>=2.9,<3.0; platform_system == "Linux"' ,
28
- # install `psycopg2-binary` on macos/windows (assumed development)
29
- ' psycopg2-binary>=2.9,<3.0; platform_system != "Linux"' ,
26
+ " psycopg2-binary>=2.9,<3.0" ,
30
27
" dbt-adapters>=0.1.0a1,<2.0" ,
31
28
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
32
29
" dbt-core>=1.8.0a1" ,
@@ -46,6 +43,9 @@ Changelog = "https://github.com/dbt-labs/dbt-postgres/blob/main/CHANGELOG.md"
46
43
requires = [" hatchling" ]
47
44
build-backend = " hatchling.build"
48
45
46
+ [tool .hatch .build .hooks .custom ]
47
+ path = " ./hatch_hooks.py"
48
+
49
49
[tool .hatch .build .targets .sdist ]
50
50
include = [" dbt" ]
51
51
You can’t perform that action at this time.
0 commit comments