Skip to content

Commit

Permalink
<Release>[Logging]: <Final update before release>
Browse files Browse the repository at this point in the history
[
* Get all the latest dependencies
* Clean up the log file
*
]

[]
  • Loading branch information
hasii2011 committed Dec 25, 2024
1 parent dd4b1cc commit 753a280
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 24 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
pip install -v -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython
pip install semantic-version==2.10.0
pip install PyGithub==2.4.0
pip install codeallybasic==1.7.0
pip install codeallyadvanced==1.3.2
pip install codeallybasic==1.8.1
pip install codeallyadvanced==1.3.3
pip install pyutmodelv2==2.2.0
pip install ogl==3.6.0
pip install oglio==2.3.3
pip install pyutplugins==3.1.1
pip install ogl==3.6.1
pip install oglio==2.3.4
pip install pyutplugins==3.1.6
pip install html-testRunner==1.2.1
pip install buildlackey==1.7.0
- run:
Expand Down
5 changes: 0 additions & 5 deletions pyut/resources/loggingConfiguration.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@
"level": "INFO",
"propagate": "False",
"handlers": ["rotatingFileHandler"]
},
"pyut.ui.eventengine.EventEngine": {
"level": "DEBUG",
"propagate": "False",
"handlers": ["consoleHandler"]
}
}
}
2 changes: 1 addition & 1 deletion pyut/ui/main/PyutApplicationFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def _onActivate(self, event: ActivateEvent):
Args:
event:
"""
self.logger.info(f'_onActivate event: {event.GetActive()}')
self.logger.debug(f'_onActivate event: {event.GetActive()=}')
if self._tipAlreadyDisplayed is True:
pass
else:
Expand Down
3 changes: 1 addition & 2 deletions pyut/ui/main/PyutUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,9 @@ def handleUnsavedProjects(self):

def closeDefaultEmptyProject(self):

self.logger.info(f'Remove the default project')

defaultProject: IPyutProject = self._projectManager.getProject(PyutConstants.DEFAULT_PROJECT_NAME)
if defaultProject is not None:
self.logger.info(f'Removing the default project')
self._closeProject(projectToClose=defaultProject)

def showFrame(self, frame: UmlDiagramsFrame):
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ buildlackey==1.7.0
# versionoverlord==1.4.0

html-testRunner~=1.2.1
mypy==1.13.0
mypy==1.14.0
mypy-extensions==1.0.0
types-Deprecated==1.2.9.20240311

wxPython==4.2.2
semantic-version==2.10.0

codeallybasic==1.7.0
codeallyadvanced==1.3.2
pyutmodelv2==2.2.0
ogl==3.6.0
oglio==2.3.3
pyutplugins==3.1.1
codeallybasic==1.8.1
codeallyadvanced==1.3.3
pyutmodelv2==2.2.2
ogl==3.6.1
oglio==2.3.4
pyutplugins==3.1.6
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@
),
setup_requires=['py2app'],
install_requires=[
'codeallybasic>=1.7.0',
'codeallybasic>=1.8.1',
'codeallyadvanced>=1.3.2',
'pyutmodelv2>=2.2.0',
'ogl>=3.6.0',
'oglio>=2.3.3',
'pyutplugins>=3.1.1',
'ogl>=3.6.1',
'oglio>=2.3.4',
'pyutplugins>=3.1.6',
'semantic-version==2.10.0',
'PyGithub==2.4.0',
'wxPython==4.2.2',
Expand Down

0 comments on commit 753a280

Please sign in to comment.