Skip to content

Commit 9b74184

Browse files
author
Humberto Sanchez II
committed
<>[]: <Update dependencies>
[] [#76]
1 parent 6ff94ab commit 9b74184

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython
3636
pip install codeallybasic==1.1.0
3737
pip install codeallyadvanced==1.1.0
38-
pip install pyutmodelv2==2.1.0
39-
pip install ogl==2.1.5
38+
pip install pyutmodelv2>=2.1.5
39+
pip install ogl>=2.1.17
4040
pip install untangle==1.2.1
4141
pip install buildlackey==1.6.3
4242
- run:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies = [
1616
'untangle==1.2.1',
1717
'codeallybasic>=1.1.0',
1818
'codeallyadvanced>=1.1.0',
19-
'pyutmodelv2==2.1.0',
20-
'ogl>=2.1.5',
19+
'pyutmodelv2>=2.1.5',
20+
'ogl>=2.1.17',
2121
]
2222

2323
[project.urls]

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildlackey==1.6.3
99
mypy==1.8.0
1010
mypy-extensions==1.0.0
1111
types-Deprecated==1.2.9.20240106
12-
types-setuptools==69.0.0.20240115
12+
types-setuptools==69.0.0.20240125
1313
typing_extensions==4.9.0
1414

1515
Deprecated~=1.2.14
@@ -20,5 +20,5 @@ wxPython==4.2.1
2020
codeallybasic==1.1.0
2121
codeallyadvanced==1.1.0
2222

23-
pyutmodelv2==2.1.0
24-
ogl==2.1.5
23+
pyutmodelv2>=2.1.5
24+
ogl>=2.1.17

src/untanglepyut/UnTanglePyut.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ def noteToPyutNote(self, graphicNote: Element) -> PyutNote:
210210
# fix line feeds
211211
pyutNote = cast(PyutNote, self._addPyutObjectAttributes(pyutElement=noteElement, pyutObject=pyutNote))
212212

213-
# TODO: Update when code-ally-basic has common code
214213
rawContent: str = noteElement['content']
215214
cleanContent: str = rawContent.replace(XML_END_OF_LINE_MARKER, osLineSep)
216215
pyutNote.content = cleanContent

src/untanglepyut/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = '2.1.5'
1+
__version__: str = '2.1.6'

0 commit comments

Comments
 (0)