Skip to content

Commit 9d3956c

Browse files
Merge pull request #81 from Geode-solutions/fix/update_og_dependencies
Fix/update og dependencies
2 parents c8dec55 + c44099c commit 9d3956c

File tree

2 files changed

+24
-26
lines changed

2 files changed

+24
-26
lines changed

requirements.txt

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.10
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# pip-compile requirements.in
@@ -10,22 +10,22 @@ attrs==23.2.0
1010
# via
1111
# jsonschema
1212
# referencing
13-
blinker==1.8.1
13+
blinker==1.8.2
1414
# via flask
1515
click==8.1.7
1616
# via flask
1717
flask[async]==3.0.3
1818
# via
1919
# -r requirements.in
2020
# flask-cors
21-
flask-cors==4.0.0
21+
flask-cors==4.0.1
2222
# via -r requirements.in
23-
geode-background==7.9.8
23+
geode-background==7.12.0
2424
# via
2525
# geode-explicit
2626
# geode-implicit
2727
# geode-simplex
28-
geode-common==31.0.8
28+
geode-common==31.2.1
2929
# via
3030
# -r requirements.in
3131
# geode-background
@@ -34,38 +34,38 @@ geode-common==31.0.8
3434
# geode-numerics
3535
# geode-simplex
3636
# geode-viewables
37-
geode-conversion==5.2.8
37+
geode-conversion==5.4.1
3838
# via
3939
# geode-explicit
4040
# geode-implicit
41-
geode-explicit==4.7.5
41+
geode-explicit==4.8.3
4242
# via
4343
# -r requirements.in
4444
# geode-implicit
45-
geode-implicit==2.8.6
45+
geode-implicit==2.8.7
4646
# via -r requirements.in
47-
geode-numerics==4.3.3
47+
geode-numerics==4.4.0
4848
# via
4949
# -r requirements.in
5050
# geode-implicit
5151
# geode-simplex
52-
geode-simplex==6.7.4
52+
geode-simplex==6.8.3
5353
# via -r requirements.in
54-
geode-viewables==2.2.2
54+
geode-viewables==2.2.3
5555
# via -r requirements.in
5656
itsdangerous==2.2.0
5757
# via flask
58-
jinja2==3.1.3
58+
jinja2==3.1.4
5959
# via flask
60-
jsonschema==4.21.1
60+
jsonschema==4.22.0
6161
# via -r requirements.in
6262
jsonschema-specifications==2023.12.1
6363
# via jsonschema
6464
markupsafe==2.1.5
6565
# via
6666
# jinja2
6767
# werkzeug
68-
opengeode-core==14.19.2
68+
opengeode-core==14.21.3
6969
# via
7070
# -r requirements.in
7171
# geode-background
@@ -80,17 +80,17 @@ opengeode-core==14.19.2
8080
# opengeode-geosciencesio
8181
# opengeode-inspector
8282
# opengeode-io
83-
opengeode-geosciences==7.6.4
83+
opengeode-geosciences==7.7.0
8484
# via
8585
# -r requirements.in
8686
# geode-implicit
8787
# geode-viewables
8888
# opengeode-geosciencesio
89-
opengeode-geosciencesio==4.7.6
89+
opengeode-geosciencesio==4.7.7
9090
# via
9191
# -r requirements.in
9292
# geode-implicit
93-
opengeode-inspector==5.1.3
93+
opengeode-inspector==5.1.4
9494
# via
9595
# -r requirements.in
9696
# geode-explicit
@@ -102,17 +102,15 @@ opengeode-io==6.5.1
102102
# geode-implicit
103103
# geode-viewables
104104
# opengeode-geosciencesio
105-
referencing==0.35.0
105+
referencing==0.35.1
106106
# via
107107
# jsonschema
108108
# jsonschema-specifications
109-
rpds-py==0.18.0
109+
rpds-py==0.18.1
110110
# via
111111
# jsonschema
112112
# referencing
113-
typing-extensions==4.12.0
114-
# via asgiref
115-
werkzeug==3.0.2
113+
werkzeug==3.0.3
116114
# via
117115
# -r requirements.in
118116
# flask

src/opengeodeweb_back/geode_objects.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def geode_objects_dict():
6767
"is_3D": False,
6868
"is_viewable": True,
6969
"save_viewable": g_v.save_viewable_edged_curve2D,
70-
"inspector": og_inspector.inspect_edgedcurve2D,
70+
"inspector": og_inspector.inspect_edged_curve2D,
7171
},
7272
"EdgedCurve3D": {
7373
"input_factory": og.EdgedCurveInputFactory3D,
@@ -87,7 +87,7 @@ def geode_objects_dict():
8787
"is_3D": True,
8888
"is_viewable": True,
8989
"save_viewable": g_v.save_viewable_edged_curve3D,
90-
"inspector": og_inspector.inspect_edgedcurve3D,
90+
"inspector": og_inspector.inspect_edged_curve3D,
9191
},
9292
"Graph": {
9393
"input_factory": og.GraphInputFactory,
@@ -166,7 +166,7 @@ def geode_objects_dict():
166166
"is_3D": False,
167167
"is_viewable": True,
168168
"save_viewable": g_v.save_viewable_point_set2D,
169-
"inspector": og_inspector.inspect_pointset2D,
169+
"inspector": og_inspector.inspect_point_set2D,
170170
},
171171
"PointSet3D": {
172172
"input_factory": og.PointSetInputFactory3D,
@@ -186,7 +186,7 @@ def geode_objects_dict():
186186
"is_3D": True,
187187
"is_viewable": True,
188188
"save_viewable": g_v.save_viewable_point_set3D,
189-
"inspector": og_inspector.inspect_pointset3D,
189+
"inspector": og_inspector.inspect_point_set3D,
190190
},
191191
"PolygonalSurface2D": {
192192
"input_factory": og.PolygonalSurfaceInputFactory2D,

0 commit comments

Comments
 (0)