Skip to content

Commit

Permalink
Merge pull request #26 from adalfarus/dev
Browse files Browse the repository at this point in the history
Dev -- 1.4.8.4
  • Loading branch information
adalfarus committed Apr 12, 2024
2 parents 831f03c + 9ae42b6 commit e3f18f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion aplustools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# aplustools __init__
__version__ = "1.4.8.3"
__version__ = "1.4.8.4"


from aplustools.package import LazyModuleLoader as _LazyModuleLoader

Expand Down
4 changes: 2 additions & 2 deletions aplustools/io/gui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from aplustools.package import LazyModuleLoader as _LazyModuleLoader

# Lazy loading modules
chat = _LazyModuleLoader('aplustools.package.gui.chat')
calendar = _LazyModuleLoader('aplustools.package.gui.calendar')
chat = _LazyModuleLoader('aplustools.io.gui.chat')
calendar = _LazyModuleLoader('aplustools.io.gui.calendar')

# Define __all__ to limit what gets imported with 'from <package> import *'
__all__ = ['chat', 'calendar']
Expand Down
2 changes: 1 addition & 1 deletion aplustools/io/gui/_direct_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def install_dependencies():
success = _install_dependencies_lst(["PySide6==6.6.1"])
success = _install_dependencies_lst(["PySide6==6.6.1", "brotli==1.1.0"])
if not success:
return
print("Done, all possible dependencies for the data module installed ...")
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages = ["aplustools", "aplustools.data", "aplustools.io", "aplustools.utils"

[project]
name = "aplustools"
version = "1.4.8.3"
version = "1.4.8.4"
dependencies = [
"requests>=2.31.0",
"BeautifulSoup4>=4.12.2",
Expand Down

0 comments on commit e3f18f3

Please sign in to comment.