Skip to content

Commit

Permalink
Removed Version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Psychokiller1888 committed Jun 9, 2022
1 parent 925ba2b commit 0d05cf3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 68 deletions.
2 changes: 1 addition & 1 deletion AliceCli/MainMenu.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from InquirerPy import inquirer
from InquirerPy.base.control import Choice
from InquirerPy.separator import Separator
from ProjectAlice.core.base.model.Version import Version

from AliceCli.Version import Version
from AliceCli.alice.alice import reportBug, systemctl, updateAlice
from AliceCli.install.install import installAlice, installAliceSatellite, installSoundDevice, prepareSdCard, uninstallSoundDevice
from AliceCli.utils.commons import connect, discover
Expand Down
63 changes: 0 additions & 63 deletions AliceCli/Version.py

This file was deleted.

3 changes: 1 addition & 2 deletions AliceCli/utils/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@
from InquirerPy import inquirer
from InquirerPy.base.control import Choice
from InquirerPy.separator import Separator
from ProjectAlice.core.base.model.Version import Version
from networkscan import networkscan
from pathlib import Path
from threading import Event, Thread
from typing import Optional, Tuple

from AliceCli.Version import Version


IP_REGEX = re.compile(r'^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$')
SSH: Optional[paramiko.SSHClient] = None
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

setup(
name='projectalice-cli',
version='1.3.20',
version='1.3.21',
long_description=Path('README.md').read_text(encoding='utf8'),
long_description_content_type='text/markdown',
python_requires='>=3.8',
Expand All @@ -52,7 +52,8 @@
'pytest-cov~=3.0.0',
'coveralls~=3.3.1',
'tomli~=2.0.0',
'six~=1.16.0'
'six~=1.16.0',
'ProjectAlice'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 0d05cf3

Please sign in to comment.