Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/workflows/Branch-protection.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/pr_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Pull request

on:
pull_request:
types: [opened, reopened]
branches:
- master

jobs:
update-branch:
uses: Geode-solutions/actions/.github/workflows/update-branch.yml@master
11 changes: 0 additions & 11 deletions .github/workflows/prepare_pr.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test

on:
push:
branches-ignore:
- master
- next

jobs:
test:
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
with:
repos: ${{ vars.REPOS }}
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Test PR

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
test:
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
with:
repos: ${{ vars.REPOS }}
secrets: inherit
11 changes: 11 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
branches: [
{ name: "master" },
{ name: "next", channel: "next", prerelease: "rc" }
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/github'
]
}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [

[project.optional-dependencies]
gpu = ["vtk == 9.3.1"]
cpu = ["vtk-osmesa == 9.3.1"]

[project.urls]
"Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Viewer"
Expand Down
6 changes: 3 additions & 3 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wslink<2
fastjsonschema
websocket-client
wslink==1.12.4
fastjsonschema==2.21.1
websocket_client==1.8.0
12 changes: 4 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
#
# This file is autogenerated by pip-compile with Python 3.10
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile requirements.in
# pip-compile --pre requirements.in
#
aiohappyeyeballs==2.6.1
# via aiohttp
aiohttp==3.12.14
aiohttp==3.12.15
# via wslink
aiosignal==1.4.0
# via aiohttp
async-timeout==5.0.1
# via aiohttp
attrs==25.3.0
# via aiohttp
fastjsonschema==2.21.1
Expand All @@ -31,9 +29,7 @@ propcache==0.3.2
# aiohttp
# yarl
typing-extensions==4.14.1
# via
# aiosignal
# multidict
# via aiosignal
websocket-client==1.8.0
# via -r requirements.in
wslink==1.12.4
Expand Down
Loading