Skip to content

Commit 1bdffb4

Browse files
authored
Merge pull request #211 from britive/fix/its-not-all-relative
Switch to absolute imports in `cli_interface` for packaging.
2 parents 21cfa42 + 4e3f9a0 commit 1bdffb4

File tree

3 files changed

+38
-16
lines changed

3 files changed

+38
-16
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
> As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing
44
> time for full QA testing before moving the release candidate to a full release.
55
6+
## v2.2.3 [2025-08-06]
7+
8+
__What's New:__
9+
10+
* None
11+
12+
__Enhancements:__
13+
14+
* None
15+
16+
__Bug Fixes:__
17+
18+
* None
19+
20+
__Dependencies:__
21+
22+
* None
23+
24+
__Other:__
25+
26+
* Switched to absolute imports in `cli_interface` for packaging purposes.
27+
628
## v2.2.2 [2025-07-25]
729

830
__What's New:__

src/pybritive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.2.2'
1+
__version__ = '2.2.3'

src/pybritive/cli_interface.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33

44
import click
55

6-
from .commands.api import api as command_api
7-
from .commands.aws import aws as group_aws
8-
from .commands.cache import cache as group_cache
9-
from .commands.checkin import checkin as command_checkin
10-
from .commands.checkout import checkout as command_checkout
11-
from .commands.clear import clear as group_clear
12-
from .commands.configure import configure as group_configure
13-
from .commands.login import login as command_login
14-
from .commands.logout import logout as command_logout
15-
from .commands.ls import ls as group_ls
16-
from .commands.request import request as group_request
17-
from .commands.secret import secret as group_secret
18-
from .commands.ssh import ssh as group_ssh
19-
from .commands.user import user as command_user
20-
from .options.britive_options import britive_options
6+
from pybritive.commands.api import api as command_api
7+
from pybritive.commands.aws import aws as group_aws
8+
from pybritive.commands.cache import cache as group_cache
9+
from pybritive.commands.checkin import checkin as command_checkin
10+
from pybritive.commands.checkout import checkout as command_checkout
11+
from pybritive.commands.clear import clear as group_clear
12+
from pybritive.commands.configure import configure as group_configure
13+
from pybritive.commands.login import login as command_login
14+
from pybritive.commands.logout import logout as command_logout
15+
from pybritive.commands.ls import ls as group_ls
16+
from pybritive.commands.request import request as group_request
17+
from pybritive.commands.secret import secret as group_secret
18+
from pybritive.commands.ssh import ssh as group_ssh
19+
from pybritive.commands.user import user as command_user
20+
from pybritive.options.britive_options import britive_options
2121

2222

2323
def safe_cli():

0 commit comments

Comments
 (0)