Skip to content

Commit c71d313

Browse files
Merge branch 'next' into fix/refactor_kill
2 parents 0b89bde + ce76d8c commit c71d313

File tree

11 files changed

+37
-24
lines changed

11 files changed

+37
-24
lines changed

mypy.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[mypy]
22
strict = True
3-
files = src/
3+
files = src/
4+
disallow_untyped_decorators = False

pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ classifiers = [
1919
"Operating System :: OS Independent",
2020
]
2121

22-
[project.optional-dependencies]
23-
gpu = ["vtk == 9.3.1"]
24-
cpu = ["vtk-osmesa == 9.3.1"]
25-
2622
[project.urls]
2723
"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer"
2824
"Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/issues"

requirements.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
wslink==1.12.4
2-
websocket_client==1.8.0
2+
websocket_client==1.8.0
3+
vtk==9.5.2

requirements.txt

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
#
55
# pip-compile --cert=None --client-cert=None --index-url=None --output-file=requirements.txt --pip-args=None requirements-internal.in requirements.in
66
#
7-
aiohappyeyeballs==2.6.1
7+
aiohappyeyeballs==2.*,>=2.6.1
88
# via aiohttp
9-
aiohttp==3.12.15
9+
aiohttp==3.*,>=3.12.15
1010
# via wslink
11-
aiosignal==1.4.0
11+
aiosignal==1.*,>=1.4.0
1212
# via aiohttp
13-
attrs==25.3.0
13+
attrs==25.*,>=25.3.0
1414
# via aiohttp
1515
blinker==1.9.0
1616
# via flask
@@ -22,7 +22,9 @@ flask==3.1.2
2222
# via flask-sqlalchemy
2323
flask-sqlalchemy==3.1.1
2424
# via opengeodeweb-microservice
25-
frozenlist==1.7.0
25+
fonttools==4.*,>=4.60.1
26+
# via matplotlib
27+
frozenlist==1.*,>=1.7.0
2628
# via
2729
# aiohttp
2830
# aiosignal
@@ -39,29 +41,43 @@ markupsafe==3.0.3
3941
# flask
4042
# jinja2
4143
# werkzeug
42-
multidict==6.6.4
44+
matplotlib==3.*,>=3.10.6
45+
# via vtk
46+
multidict==6.*,>=6.6.4
4347
# via
4448
# aiohttp
4549
# yarl
4650
opengeodeweb-microservice==1.0.0
4751
# via -r requirements-internal.in
48-
propcache==0.3.2
52+
packaging==25.0
53+
# via matplotlib
54+
pillow==11.*,>=11.3.0
55+
# via matplotlib
56+
propcache==0.*,>=0.3.2
4957
# via
5058
# aiohttp
5159
# yarl
52-
sqlalchemy==2.0.43
60+
pyparsing==3.*,>=3.3.0a1
61+
# via matplotlib
62+
python-dateutil==2.9.*,>=2.9.0.post0
63+
# via matplotlib
64+
six==1.*,>=1.17.0
65+
# via python-dateutil
66+
sqlalchemy==2.*,>=2.0.43
5367
# via
5468
# flask-sqlalchemy
5569
# opengeodeweb-microservice
56-
typing-extensions==4.15.0
70+
typing-extensions==4.*,>=4.15.0
5771
# via
5872
# aiosignal
5973
# sqlalchemy
60-
websocket-client==1.8.0
74+
vtk==9.5.2
75+
# via -r requirements.in
76+
websocket-client==1.*,>=1.8.0
6177
# via -r requirements.in
6278
werkzeug==3.1.3
6379
# via flask
6480
wslink==1.12.4
6581
# via -r requirements.in
66-
yarl==1.20.1
82+
yarl==1.*,>=1.20.1
6783
# via aiohttp

src/opengeodeweb_viewer/object/object_methods.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ def SetPointsVisibility(self, id, visibility):
134134
self.SetVisibility(id, visibility)
135135
else:
136136
actor.GetProperty().SetVertexVisibility(visibility)
137-
actor.GetProperty().SetEdgeVisibility(visibility)
138137
self.render()
139138

140139
def SetPointsSize(self, id, size):
-1.59 KB
Loading
-2.37 KB
Loading
-3.44 KB
Loading
-13.6 KB
Loading
-18.8 KB
Loading

0 commit comments

Comments
 (0)