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
69 changes: 0 additions & 69 deletions .github/workflows/CICD.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ jobs:
with:
npm: true
secrets: inherit

1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ jobs:
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
with:
repos: ${{ vars.REPOS }}
npm: true
secrets: inherit
1 change: 1 addition & 0 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ jobs:
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
with:
repos: ${{ vars.REPOS }}
npm: true
secrets: inherit
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
"name": "@geode/opengeodeweb-viewer",
"scripts": {
"json": "node ./node_modules/@geode/opengeodeweb-back/generate_schemas.js opengeodeweb_viewer rpc rpc .",
"test": "npm run json && pytest"
"test": "npm run json",
"build": "npm run json"
},
"dependencies": {
"@geode/opengeodeweb-back": "5.8.6"
"@geode/opengeodeweb-back": "latest"
},
"exports": {
"./opengeodeweb_viewer_schemas.json": {
"import": "./opengeodeweb_viewer_schemas.json",
"require": "./opengodeweb_viewer_schemas.json"
}
},
"version": "0.0.0-semantically-released",
"version": "0.0.0",
"description": "",
"main": "generate_schemas.js",
"repository": {
Expand All @@ -36,4 +37,4 @@
"files": [
"opengeodeweb_viewer_schemas.json"
]
}
}
19 changes: 2 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ build-backend = "setuptools.build_meta"

[project]
name = "OpenGeodeWeb-Viewer"
version = "1.10.1"
version = "0.0.0"
dynamic = ["dependencies"]
authors = [
{ name="Geode-solutions", email="[email protected]" },
]
description = "OpenGeodeWeb-Viewer is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down Expand Up @@ -51,18 +51,3 @@ where = ["src"]
"opengeodeweb_viewer.rpc.model.surfaces.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.model.blocks.schemas" = ["*.json"]
"opengeodeweb_viewer.rpc.viewer.schemas" = ["*.json"]

[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version",
]

[tool.semantic_release.remote.token]
env = "GH_TOKEN"

[tool.semantic_release.branches.master]
match = "master"

[tool.semantic_release.branches.next]
match = "next"
prerelease = true
Loading