Skip to content

Commit f8e2123

Browse files
author
Humberto Sanchez II
committed
<API Update>[]: <Ogl Update II>
[] [#80]
1 parent 52b1cf0 commit f8e2123

File tree

5 files changed

+16
-20
lines changed

5 files changed

+16
-20
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
pip install html-testRunner~=1.2.1
3434
pip install attrdict3
3535
pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython
36-
pip install codeallybasic==1.3.0
37-
pip install codeallyadvanced==1.3.1
38-
pip install pyutmodelv2>=2.1.5
36+
pip install codeallybasic>=1.3.2
37+
pip install codeallyadvanced>=1.3.1
38+
pip install pyutmodelv2>=2.1.6
3939
pip install ogl>=3.0.0
4040
pip install untangle==1.2.1
4141
pip install buildlackey==1.6.3

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ keywords = ['pyut', 'graphical shapes', 'python', 'xml']
1414

1515
dependencies = [
1616
'untangle==1.2.1',
17-
'codeallybasic>=1.3.0',
17+
'codeallybasic>=1.3.2',
1818
'codeallyadvanced>=1.3.1',
19-
'pyutmodelv2>=2.1.5',
19+
'pyutmodelv2>=2.1.6',
2020
'ogl>=3.0.0',
2121
]
2222

requirements.txt

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
wheel==0.42.0
2-
setuptools==69.1.1
3-
twine==5.0.0
4-
build==1.1.1
1+
wheel==0.43.0
2+
setuptools==70.2.0
3+
twine==5.1.1
4+
build==1.2.1
55
html-testRunner~=1.2.1
66

77
buildlackey==1.6.3
88

9-
mypy==1.9.0
9+
mypy==1.10.1
1010
mypy-extensions==1.0.0
11-
types-Deprecated==1.2.9.20240106
12-
types-setuptools==69.1.0.20240310
13-
typing_extensions==4.10.0
14-
15-
Deprecated~=1.2.14
11+
typing_extensions==4.12.2
1612

1713
untangle==1.2.1
1814
wxPython==4.2.1
1915

20-
codeallybasic==1.3.0
21-
codeallyadvanced==1.3.1
16+
codeallybasic>=1.3.2
17+
codeallyadvanced>=1.3.1
2218

23-
pyutmodelv2>=2.1.5
19+
pyutmodelv2==2.1.6
2420
ogl>=3.0.0

src/untanglepyut/BaseUnTangle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from logging import Logger
33
from logging import getLogger
44

5-
from miniogl.ShapeModel import ShapeModel
5+
from miniogl.models.ShapeModel import ShapeModel
66

77
from ogl.OglObject import OglObject
88

src/untanglepyut/UnTangleOglLinks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def _graphicLinkToOglLink(self, graphicLink: Element, linkableOglObjects: Linkab
156156
dstModel.SetPosition(x=gla.dstX, y=gla.dstY)
157157

158158
# add the control points to the line
159-
line = srcAnchor.GetLines()[0] # only 1 line per anchor in Pyut
159+
line = srcAnchor.lines[0] # only 1 line per anchor in Pyut
160160
parent = line.sourceAnchor.parent
161161
selfLink: bool = parent is oglLink.destinationAnchor.parent
162162

0 commit comments

Comments
 (0)