fix -> missing Python hard dependency: packaging

This commit is contained in:
Vinicius Moreira
2021-01-20 09:43:13 -03:00
parent 4568aef5a4
commit 978120ba71
10 changed files with 14 additions and 8 deletions

View File

@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.9.13] 2021-01-29
### Fixes
- missing Python hard dependency: **packaging**
## [0.9.12] 2021-01-19
### Features
- Arch

View File

@@ -1,4 +1,4 @@
__version__ = '0.9.12'
__version__ = '0.9.13'
__app_name__ = 'bauh'
import os

View File

@@ -12,7 +12,7 @@ from pathlib import Path
from typing import Set, Type, List, Tuple, Optional
from colorama import Fore
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh.api.abstract.context import ApplicationContext
from bauh.api.abstract.controller import SoftwareManager, SearchResult, UpgradeRequirements, UpgradeRequirement, \

View File

@@ -3,7 +3,7 @@ import traceback
from threading import Thread
from typing import Set, List, Tuple, Dict, Iterable
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh.api.abstract.handler import ProcessWatcher
from bauh.gems.arch import pacman, message, sorting, confirmation

View File

@@ -4,7 +4,7 @@ import traceback
from typing import Optional
from colorama import Fore
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh.api.abstract.model import PackageStatus
from bauh.api.http import HttpClient

View File

@@ -4,7 +4,7 @@ import traceback
from threading import Thread
from typing import Dict, Set, List, Tuple, Iterable, Optional
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh.api.abstract.controller import UpgradeRequirements, UpgradeRequirement
from bauh.api.abstract.handler import ProcessWatcher

View File

@@ -1,7 +1,7 @@
import os
from pathlib import Path
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh.api.constants import CONFIG_PATH
from bauh.commons import resource

View File

@@ -6,7 +6,7 @@ from datetime import datetime
from typing import List, Dict, Set, Iterable, Optional
from packaging.version import Version
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh.api.exception import NoInternetException
from bauh.commons.system import new_subprocess, run_cmd, SimpleProcess, ProcessHandler

View File

@@ -2,7 +2,7 @@ import logging
import os
from pathlib import Path
from pkg_resources import parse_version
from packaging.version import parse as parse_version
from bauh import __app_name__, __version__
from bauh.api.constants import CACHE_PATH

View File

@@ -3,3 +3,4 @@ requests>=2.18
colorama>=0.3.8
pyyaml>=3.13
python-dateutil>=2.7
packaging