Skip to content

Commit

Permalink
edgedb: metapkg now defaults to incrementing minors for dev, opt-in t…
Browse files Browse the repository at this point in the history
…o major
  • Loading branch information
elprans committed Oct 14, 2024
1 parent 1ca25d4 commit 608d3c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions edgedbpkg/edgedb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,13 @@ def resolve(

os.environ.pop("BUILD_EXT_MODE", None)

@classmethod
def get_next_feature_version(
cls,
version: poetry_version.Version,
) -> poetry_version.Version:
return version.next_major()

@classmethod
def canonicalize_version(
cls,
Expand Down
1 change: 0 additions & 1 deletion edgedbpkg/edgedb_ext/postgis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import pathlib

from metapkg import packages
from metapkg import targets

from edgedbpkg import edgedb_ext
Expand Down

0 comments on commit 608d3c0

Please sign in to comment.