mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 05:04:15 +02:00
fix: Ubuntu 19.04 pip3 install issue
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,3 +5,4 @@ __pycache__
|
|||||||
*.orig
|
*.orig
|
||||||
dist
|
dist
|
||||||
*.egg-info
|
*.egg-info
|
||||||
|
build
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Fixes:
|
### Fixes:
|
||||||
- cached Flatpak app current version
|
- cached Flatpak app current version
|
||||||
- disk loader not filling all requested cached data from the disk
|
- disk loader not filling all requested cached data from the disk
|
||||||
|
- [Ubuntu 19.04 pip3 install issue] (https://github.com/vinifmor/bauh/issues/3)
|
||||||
|
|
||||||
### Code
|
### Code
|
||||||
- Code was internally modularized as: **api** (conceptual classes used to create custom software managers), **gems** (software managers), **commons** (common classes shared between the **view** and **gems**), **view** (UI code)
|
- Code was internally modularized as: **api** (conceptual classes used to create custom software managers), **gems** (software managers), **commons** (common classes shared between the **view** and **gems**), **view** (UI code)
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ from bauh.view.qt.window import ManageWindow
|
|||||||
from bauh.view.util.cache import CacheCleaner, DefaultMemoryCacheFactory
|
from bauh.view.util.cache import CacheCleaner, DefaultMemoryCacheFactory
|
||||||
from bauh.view.util.disk import DefaultDiskCacheLoaderFactory
|
from bauh.view.util.disk import DefaultDiskCacheLoaderFactory
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
args = app_args.read()
|
args = app_args.read()
|
||||||
logger = logs.new_logger(__app_name__, bool(args.logs))
|
logger = logs.new_logger(__app_name__, bool(args.logs))
|
||||||
app_args.validate(args, logger)
|
app_args.validate(args, logger)
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -35,7 +35,7 @@ setup(
|
|||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"{name}={name}.app".format(name=NAME)
|
"{name}={name}.app:main".format(name=NAME)
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
|||||||
Reference in New Issue
Block a user