Skip to content

Commit

Permalink
<>[]: <Update dependencies>
Browse files Browse the repository at this point in the history
[]

[#76]
  • Loading branch information
Humberto Sanchez II committed Feb 5, 2024
1 parent 6ff94ab commit 9b74184
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython
pip install codeallybasic==1.1.0
pip install codeallyadvanced==1.1.0
pip install pyutmodelv2==2.1.0
pip install ogl==2.1.5
pip install pyutmodelv2>=2.1.5
pip install ogl>=2.1.17
pip install untangle==1.2.1
pip install buildlackey==1.6.3
- run:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ dependencies = [
'untangle==1.2.1',
'codeallybasic>=1.1.0',
'codeallyadvanced>=1.1.0',
'pyutmodelv2==2.1.0',
'ogl>=2.1.5',
'pyutmodelv2>=2.1.5',
'ogl>=2.1.17',
]

[project.urls]
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildlackey==1.6.3
mypy==1.8.0
mypy-extensions==1.0.0
types-Deprecated==1.2.9.20240106
types-setuptools==69.0.0.20240115
types-setuptools==69.0.0.20240125
typing_extensions==4.9.0

Deprecated~=1.2.14
Expand All @@ -20,5 +20,5 @@ wxPython==4.2.1
codeallybasic==1.1.0
codeallyadvanced==1.1.0

pyutmodelv2==2.1.0
ogl==2.1.5
pyutmodelv2>=2.1.5
ogl>=2.1.17
1 change: 0 additions & 1 deletion src/untanglepyut/UnTanglePyut.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ def noteToPyutNote(self, graphicNote: Element) -> PyutNote:
# fix line feeds
pyutNote = cast(PyutNote, self._addPyutObjectAttributes(pyutElement=noteElement, pyutObject=pyutNote))

# TODO: Update when code-ally-basic has common code
rawContent: str = noteElement['content']
cleanContent: str = rawContent.replace(XML_END_OF_LINE_MARKER, osLineSep)
pyutNote.content = cleanContent
Expand Down
2 changes: 1 addition & 1 deletion src/untanglepyut/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = '2.1.5'
__version__: str = '2.1.6'

0 comments on commit 9b74184

Please sign in to comment.