Skip to content

Commit 0b7ba26

Browse files
committed
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Viewer into fix/database
2 parents 0151d47 + ce76d8c commit 0b7ba26

File tree

15 files changed

+100
-43
lines changed

15 files changed

+100
-43
lines changed

.github/workflows/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"node": true
3+
}

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ jobs:
88
uses: Geode-solutions/actions/.github/workflows/py-deploy.yml@master
99
with:
1010
repos: ${{ vars.REPOS }}
11-
npm: true
1211
secrets: inherit

.github/workflows/schedule.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Schedule
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
type: string
8+
default: "next"
9+
schedule:
10+
- cron: 0 23 * * *
11+
12+
jobs:
13+
schedule:
14+
uses: Geode-solutions/actions/.github/workflows/py-schedule.yml@master
15+
with:
16+
repos: ${{ vars.REPOS }}
17+
branch: ${{ inputs.branch || 'next' }}
18+
secrets: inherit

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ jobs:
1111
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
1212
with:
1313
repos: ${{ vars.REPOS }}
14-
npm: true
1514
secrets: inherit

.github/workflows/test_pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ jobs:
99
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
1010
with:
1111
repos: ${{ vars.REPOS }}
12-
npm: true
1312
secrets: inherit

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

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-internal.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
opengeodeweb-microservice

requirements.in

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

0 commit comments

Comments
 (0)