Skip to content

Commit

Permalink
Merge pull request #159 Exegol 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac authored May 15, 2023
2 parents 0db3397 + bf717cf commit 76d57ab
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion exegol/config/ConstantConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class ConstantConfig:
"""Constant parameters information"""
# Exegol Version
version: str = "4.2.1"
version: str = "4.2.2"

# Exegol documentation link
documentation: str = "https://exegol.rtfd.io/"
Expand Down
4 changes: 2 additions & 2 deletions exegol/model/ContainerConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ def interactiveConfig(self, container_name: str) -> List[str]:

# Shell logging config
if self.__shell_logging:
if Confirm("Do you want to [green]enable[/green] automatic [blue]shell logging[/blue]?", False):
if Confirm("Do you want to [orange3]disable[/orange3] automatic [blue]shell logging[/blue]?", False):
self.__disableShellLogging()
elif Confirm("Do you want to [orange3]disable[/orange3] automatic [blue]shell logging[/blue]?", False):
elif Confirm("Do you want to [green]enable[/green] automatic [blue]shell logging[/blue]?", False):
self.enableShellLogging()
# Command builder info
if self.__shell_logging:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
docker~=6.0.0
requests>=2.28.0
requests~=2.28.2
rich~=13.3.0
GitPython~=3.1.29
PyYAML>=6.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
],
install_requires=[
'docker~=6.0.0',
'requests',
'requests~=2.28.2',
'rich~=13.3.0',
'PyYAML',
'GitPython',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_exegol.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '4.2.1'
assert __version__ == '4.2.2'

0 comments on commit 76d57ab

Please sign in to comment.