From 83437bd90fc4003d4a09ba47cb9445fe34f7f9c7 Mon Sep 17 00:00:00 2001 From: Billy Date: Mon, 22 Apr 2024 19:51:47 +0530 Subject: [PATCH] fix: Resolved build errors caused by searchbar (nightly) --- biscuit/__init__.py | 2 +- biscuit/core/layout/menubar/searchbar.py | 3 +-- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/biscuit/__init__.py b/biscuit/__init__.py index 06bada5c..1f0277e6 100644 --- a/biscuit/__init__.py +++ b/biscuit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.72.0" +__version__ = "2.72.1" __version_info__ = tuple([int(num) for num in __version__.split(".")]) # For tests to run successfully diff --git a/biscuit/core/layout/menubar/searchbar.py b/biscuit/core/layout/menubar/searchbar.py index 748edca5..fe8b9f42 100644 --- a/biscuit/core/layout/menubar/searchbar.py +++ b/biscuit/core/layout/menubar/searchbar.py @@ -1,8 +1,7 @@ import tkinter as tk -from core.utils import Frame, IconLabelButton - from biscuit import __version__ +from biscuit.core.utils import Frame, IconLabelButton class Searchbar(Frame): diff --git a/pyproject.toml b/pyproject.toml index 16ac0ccd..ec484074 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biscuit" -version = "2.72.0" +version = "2.72.1" description = "The uncompromising code editor" authors = ["Billy "] license = "MIT"