Skip to content

Commit

Permalink
typo in the env var
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jun 6, 2024
1 parent 9854f22 commit 7504b56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hatch_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def initialize(self, version, build_data) -> None:
package
for package in build_data["dependencies"]
if package.startswith("psycopg2-binary")
].pop()
]
build_data["depenndencies"].pop(psycopg2_binary_pinned)
psycopg2_pinned = psycopg2_binary_pinned.replace("-binary", "")
build_data["dependencies"].append(psycopg2_pinned)

Expand Down

0 comments on commit 7504b56

Please sign in to comment.