Skip to content

Commit 67b5320

Browse files
committed
fix(Actions): update semantic config
1 parent 05bc498 commit 67b5320

File tree

6 files changed

+9
-91
lines changed

6 files changed

+9
-91
lines changed

.github/workflows/CICD.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ jobs:
99
with:
1010
npm: true
1111
secrets: inherit
12-

.github/workflows/test.yml

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

.github/workflows/test_pr.yml

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

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
"name": "@geode/opengeodeweb-viewer",
33
"scripts": {
44
"json": "node ./node_modules/@geode/opengeodeweb-back/generate_schemas.js opengeodeweb_viewer rpc rpc .",
5-
"test": "npm run json && pytest"
5+
"test": "npm run json",
6+
"build": "npm run json"
67
},
78
"dependencies": {
8-
"@geode/opengeodeweb-back": "5.8.6"
9+
"@geode/opengeodeweb-back": "latest"
910
},
1011
"exports": {
1112
"./opengeodeweb_viewer_schemas.json": {
1213
"import": "./opengeodeweb_viewer_schemas.json",
1314
"require": "./opengodeweb_viewer_schemas.json"
1415
}
1516
},
16-
"version": "0.0.0-semantically-released",
17+
"version": "0.0.0",
1718
"description": "",
1819
"main": "generate_schemas.js",
1920
"repository": {
@@ -36,4 +37,4 @@
3637
"files": [
3738
"opengeodeweb_viewer_schemas.json"
3839
]
39-
}
40+
}

pyproject.toml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "OpenGeodeWeb-Viewer"
8-
version = "1.10.1"
8+
version = "0.0.0"
99
dynamic = ["dependencies"]
1010
authors = [
1111
{ name="Geode-solutions", email="[email protected]" },
1212
]
1313
description = "OpenGeodeWeb-Viewer is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem"
1414
readme = "README.md"
15-
requires-python = ">=3.8"
15+
requires-python = ">=3.9"
1616
classifiers = [
1717
"Programming Language :: Python :: 3",
1818
"License :: OSI Approved :: MIT License",
@@ -51,18 +51,3 @@ where = ["src"]
5151
"opengeodeweb_viewer.rpc.model.surfaces.schemas" = ["*.json"]
5252
"opengeodeweb_viewer.rpc.model.blocks.schemas" = ["*.json"]
5353
"opengeodeweb_viewer.rpc.viewer.schemas" = ["*.json"]
54-
55-
[tool.semantic_release]
56-
version_toml = [
57-
"pyproject.toml:project.version",
58-
]
59-
60-
[tool.semantic_release.remote.token]
61-
env = "GH_TOKEN"
62-
63-
[tool.semantic_release.branches.master]
64-
match = "master"
65-
66-
[tool.semantic_release.branches.next]
67-
match = "next"
68-
prerelease = true

0 commit comments

Comments
 (0)