Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
elprans authored Oct 21, 2024
1 parent 46603b3 commit 81a7582
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions edgedbpkg/pgext/pgvector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from metapkg import packages
from metapkg import targets


class PgVector(pgext.PostgresCExtension):
title = "pgvector extension"
ident = "pgext-pgvector"
Expand All @@ -26,7 +27,7 @@ class PgVector(pgext.PostgresCExtension):
def supports_out_of_tree_builds(self) -> bool:
return False

def get_make_args(self, build: targets.Build, wd: str) -> packages.Args:
return super().get_make_args(build, wd=wd) | {
def get_make_args(self, build: targets.Build) -> packages.Args:
return super().get_make_args(build) | {
"OPTFLAGS": "",
}

0 comments on commit 81a7582

Please sign in to comment.