mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2026-02-07 13:58:57 +01:00
Compare commits
1 Commits
renovate/p
...
3f04b38401
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3f04b38401 |
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
name: "Build frontend"
|
name: "Build frontend"
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v6"
|
- uses: "actions/checkout@v5"
|
||||||
with:
|
with:
|
||||||
ref: "${{ inputs.ref }}"
|
ref: "${{ inputs.ref }}"
|
||||||
- uses: "actions/setup-node@v6"
|
- uses: "actions/setup-node@v6"
|
||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
cache: "yarn"
|
cache: "yarn"
|
||||||
- run: "yarn install"
|
- run: "yarn install"
|
||||||
- run: "yarn build"
|
- run: "yarn build"
|
||||||
- uses: "actions/upload-artifact@v6"
|
- uses: "actions/upload-artifact@v5"
|
||||||
with:
|
with:
|
||||||
name: "frontend"
|
name: "frontend"
|
||||||
path: "dist"
|
path: "dist"
|
||||||
@@ -32,13 +32,13 @@ jobs:
|
|||||||
name: "Build backend"
|
name: "Build backend"
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v6"
|
- uses: "actions/checkout@v5"
|
||||||
with:
|
with:
|
||||||
ref: "${{ inputs.ref }}"
|
ref: "${{ inputs.ref }}"
|
||||||
- run: "pipx install poetry"
|
- run: "pipx install poetry"
|
||||||
- uses: "actions/setup-python@v6"
|
- uses: "actions/setup-python@v6"
|
||||||
with:
|
with:
|
||||||
python-version: "3.14"
|
python-version: "3.13"
|
||||||
cache: "poetry"
|
cache: "poetry"
|
||||||
- run: "poetry lock"
|
- run: "poetry lock"
|
||||||
- run: "poetry install"
|
- run: "poetry install"
|
||||||
@@ -48,18 +48,18 @@ jobs:
|
|||||||
name: "Build logo"
|
name: "Build logo"
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v6"
|
- uses: "actions/checkout@v5"
|
||||||
with:
|
with:
|
||||||
ref: "${{ inputs.ref }}"
|
ref: "${{ inputs.ref }}"
|
||||||
- run: "pipx install poetry"
|
- run: "pipx install poetry"
|
||||||
- uses: "actions/setup-python@v6"
|
- uses: "actions/setup-python@v6"
|
||||||
with:
|
with:
|
||||||
python-version: "3.14"
|
python-version: "3.13"
|
||||||
cache: "poetry"
|
cache: "poetry"
|
||||||
- run: "poetry lock"
|
- run: "poetry lock"
|
||||||
- run: "poetry install"
|
- run: "poetry install"
|
||||||
- run: "poetry run python yacv_server/logo.py"
|
- run: "poetry run python yacv_server/logo.py"
|
||||||
- uses: "actions/upload-artifact@v6"
|
- uses: "actions/upload-artifact@v5"
|
||||||
with:
|
with:
|
||||||
name: "logo"
|
name: "logo"
|
||||||
path: "assets/logo_build"
|
path: "assets/logo_build"
|
||||||
@@ -69,18 +69,18 @@ jobs:
|
|||||||
name: "Build example"
|
name: "Build example"
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v6"
|
- uses: "actions/checkout@v5"
|
||||||
with:
|
with:
|
||||||
ref: "${{ inputs.ref }}"
|
ref: "${{ inputs.ref }}"
|
||||||
- run: "pipx install poetry"
|
- run: "pipx install poetry"
|
||||||
- uses: "actions/setup-python@v6"
|
- uses: "actions/setup-python@v6"
|
||||||
with:
|
with:
|
||||||
python-version: "3.14"
|
python-version: "3.13"
|
||||||
cache: "poetry"
|
cache: "poetry"
|
||||||
- run: "poetry lock"
|
- run: "poetry lock"
|
||||||
- run: "poetry install"
|
- run: "poetry install"
|
||||||
- run: "YACV_DISABLE_SERVER=true poetry run python example/object.py"
|
- run: "YACV_DISABLE_SERVER=true poetry run python example/object.py"
|
||||||
- uses: "actions/upload-artifact@v6"
|
- uses: "actions/upload-artifact@v5"
|
||||||
with:
|
with:
|
||||||
name: "example"
|
name: "example"
|
||||||
path: "export"
|
path: "export"
|
||||||
|
|||||||
4
.github/workflows/deploy1.yml
vendored
4
.github/workflows/deploy1.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
skip: "${{ steps.check_recursive.outputs.skip || 'false' }}" # Default to false if not set
|
skip: "${{ steps.check_recursive.outputs.skip || 'false' }}" # Default to false if not set
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v6"
|
- uses: "actions/checkout@v5"
|
||||||
with: # Ensure we are not in a detached HEAD state
|
with: # Ensure we are not in a detached HEAD state
|
||||||
ref: "master"
|
ref: "master"
|
||||||
token: "${{ secrets.GH_PAT }}"
|
token: "${{ secrets.GH_PAT }}"
|
||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
- run: "pipx install poetry"
|
- run: "pipx install poetry"
|
||||||
- uses: "actions/setup-python@v6"
|
- uses: "actions/setup-python@v6"
|
||||||
with:
|
with:
|
||||||
python-version: "3.14"
|
python-version: "3.13"
|
||||||
cache: "poetry"
|
cache: "poetry"
|
||||||
- run: "poetry version $CLEAN_VERSION"
|
- run: "poetry version $CLEAN_VERSION"
|
||||||
# Commit the changes and move the tag!
|
# Commit the changes and move the tag!
|
||||||
|
|||||||
6
.github/workflows/deploy2.yml
vendored
6
.github/workflows/deploy2.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
name: "github-pages"
|
name: "github-pages"
|
||||||
url: "${{ steps.deployment.outputs.page_url }}"
|
url: "${{ steps.deployment.outputs.page_url }}"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/download-artifact@v7"
|
- uses: "actions/download-artifact@v6"
|
||||||
with: # Downloads all artifacts from the build job
|
with: # Downloads all artifacts from the build job
|
||||||
path: "./public"
|
path: "./public"
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
@@ -54,7 +54,7 @@ jobs:
|
|||||||
needs: "rebuild"
|
needs: "rebuild"
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
steps:
|
steps:
|
||||||
- uses: "actions/checkout@v6"
|
- uses: "actions/checkout@v5"
|
||||||
with:
|
with:
|
||||||
ref: "${{ inputs.ref }}"
|
ref: "${{ inputs.ref }}"
|
||||||
- uses: "actions/setup-node@v6"
|
- uses: "actions/setup-node@v6"
|
||||||
@@ -63,7 +63,7 @@ jobs:
|
|||||||
- run: "pipx install poetry"
|
- run: "pipx install poetry"
|
||||||
- uses: "actions/setup-python@v6"
|
- uses: "actions/setup-python@v6"
|
||||||
with:
|
with:
|
||||||
python-version: "3.14"
|
python-version: "3.13"
|
||||||
cache: "poetry"
|
cache: "poetry"
|
||||||
- run: "poetry install"
|
- run: "poetry install"
|
||||||
- run: "poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}"
|
- run: "poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}"
|
||||||
|
|||||||
@@ -28,17 +28,17 @@
|
|||||||
"pako": "^2.1.0",
|
"pako": "^2.1.0",
|
||||||
"pyodide": "^0.29.0",
|
"pyodide": "^0.29.0",
|
||||||
"tanmayo7lock": "^1.0.18",
|
"tanmayo7lock": "^1.0.18",
|
||||||
"three": "^0.182.0",
|
"three": "^0.181.0",
|
||||||
"three-mesh-bvh": "^0.9.0",
|
"three-mesh-bvh": "^0.9.0",
|
||||||
"three-orientation-gizmo": "git+https://github.com/jrj2211/three-orientation-gizmo.git",
|
"three-orientation-gizmo": "git+https://github.com/jrj2211/three-orientation-gizmo.git",
|
||||||
"vue": "^3.5.13",
|
"vue": "^3.5.13",
|
||||||
"vuetify": "^3.7.4"
|
"vuetify": "^3.7.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tsconfig/node24": "^24.0.0",
|
"@tsconfig/node20": "^20.1.4",
|
||||||
"@types/node": "^24.0.0",
|
"@types/node": "^24.0.0",
|
||||||
"@types/pako": "^2.0.3",
|
"@types/pako": "^2.0.3",
|
||||||
"@types/three": "^0.182.0",
|
"@types/three": "^0.181.0",
|
||||||
"@vitejs/plugin-vue": "^6.0.0",
|
"@vitejs/plugin-vue": "^6.0.0",
|
||||||
"@vitejs/plugin-vue-jsx": "^5.0.0",
|
"@vitejs/plugin-vue-jsx": "^5.0.0",
|
||||||
"@vue/tsconfig": "^0.8.0",
|
"@vue/tsconfig": "^0.8.0",
|
||||||
|
|||||||
1051
poetry.lock
generated
1051
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -20,15 +20,15 @@ build_frontend = "rm -rf yacv_server/frontend || true && yarn install && YACV_SM
|
|||||||
build_backend = "poetry build --format wheel"
|
build_backend = "poetry build --format wheel"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.14,<3.15" # Due to vtk transitive dependency of build123d -> cadquery-ocp -> vtk
|
python = ">=3.12,<3.13" # Due to vtk transitive dependency of build123d -> cadquery-ocp -> vtk
|
||||||
|
|
||||||
# CAD
|
# CAD
|
||||||
build123d = ">=0.10,<0.11"
|
build123d = ">=0.10,<0.11"
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
pygltflib = "^1.16.2"
|
pygltflib = "^1.16.2"
|
||||||
pillow = ">=12,<12.2"
|
pillow = ">=12,<12.1"
|
||||||
poetry-core = "==2.3.1"
|
poetry-core = "==2.2.1"
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
taskipy = "^1.14.1"
|
taskipy = "^1.14.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user