6 Commits

Author SHA1 Message Date
Gergo Jedlicska c09bd87092 bump tools 2025-11-17 20:50:31 +01:00
Gergő Jedlicska e73c4f6bdd bump specklepy 2024-10-03 16:35:07 +01:00
Gergő Jedlicska 74356833ce Merge branch 'main' of github.com:specklesystems/speckle_automate_python_example into gergo/specklepy_bump 2024-10-03 16:32:31 +01:00
Gergő Jedlicska 99aeb0453b feat: update specklepy 2024-06-07 19:26:14 +02:00
Gergő Jedlicska d0dbcb6d17 Merge branch 'main' into gergo/specklepy_bump 2024-06-07 19:25:04 +02:00
Gergő Jedlicska 9ebe9d3a29 feat: bump to new specklepy 2024-06-07 18:02:14 +02:00
5 changed files with 423 additions and 546 deletions
+10 -12
View File
@@ -11,29 +11,27 @@ jobs:
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.1.6
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install poetry
run: |
pip install poetry==1.8.4 &&
poetry config virtualenvs.create false &&
poetry config virtualenvs.in-project false &&
poetry config installer.parallel true
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.3.2
virtualenvs-create: false
virtualenvs-in-project: false
installer-parallel: true
- name: Restore dependencies
run: poetry install --no-root
- name: Extract functionInputSchema
id: extract_schema
run: |
python main.py generate_schema "${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}"
echo "Checking if functionSchema.json exists after generation..."
ls -lah "${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}"
python main.py generate_schema ${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}
- name: Speckle Automate Function - Build and Publish
uses: specklesystems/speckle-automate-github-composite-action@0.8.1
with:
speckle_automate_url: ${{ env.SPECKLE_AUTOMATE_URL || vars.SPECKLE_AUTOMATE_URL || 'https://automate.speckle.dev' }}
speckle_automate_url: ${{ env.SPECKLE_AUTOMATE_URL || vars.SPECKLE_AUTOMATE_URL || 'https://automate.speckle.dev' }}
speckle_token: ${{ secrets.SPECKLE_FUNCTION_TOKEN }}
speckle_function_id: ${{ secrets.SPECKLE_FUNCTION_ID }}
speckle_function_input_schema_file_path: ${{ env.FUNCTION_SCHEMA_FILE_NAME }}
+1 -1
View File
@@ -2,7 +2,7 @@
FROM python:3.11-slim
# We install poetry to generate a list of dependencies which will be required by our application
RUN pip install poetry==1.8.4
RUN pip install poetry
# We set the working directory to be the /home/speckle directory; all of our files will be copied here.
WORKDIR /home/speckle
+2
View File
@@ -0,0 +1,2 @@
[tools]
python = '3.13'
Generated
+409 -531
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -4,11 +4,10 @@ version = "0.1.0"
description = "Example function for Speckle Automate using specklepy"
authors = ["Gergő Jedlicska <gergo@jedlicska.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
specklepy = "^2.21.0"
specklepy = "^2.19.6"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"