3 Commits

Author SHA1 Message Date
dependabot[bot] 91baa36c54 chore(deps-dev): bump ruff from 0.11.12 to 0.14.14
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.11.12 to 0.14.14.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/0.11.12...0.14.14)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.14.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-26 03:11:04 +00:00
Gergő Jedlicska daf7827585 bump dependencies (#88)
* bump dependencies

* chore: bump python in more places
2025-11-18 19:11:39 +01:00
dependabot[bot] 64a9b94d50 chore(deps): bump actions/checkout from 4.1.7 to 5.0.0 (#59)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 5.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.1.7...v5.0.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-04 11:43:52 +00:00
4 changed files with 10 additions and 8 deletions
+3 -3
View File
@@ -11,10 +11,10 @@ jobs:
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/setup-python@v6
- uses: actions/checkout@v5.0.0
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- name: Install dependencies
run: |
pip install .[dev]
+2 -2
View File
@@ -1,5 +1,5 @@
# We use the official Python 3.11 image as our base image and will add our code to it. For more details, see https://hub.docker.com/_/python
FROM python:3.11-slim
FROM python:3.13-slim
# We set the working directory to be the /home/speckle directory; all of our files will be copied here.
WORKDIR /home/speckle
@@ -13,4 +13,4 @@ RUN pip install --no-cache-dir .
# Copy all of our code and assets from the local directory into the /home/speckle directory of the container.
# We also ensure that the user 'speckle' owns these files, so it can access them
# This assumes that the Dockerfile is in the same directory as the rest of the code
COPY . /home/speckle
COPY . /home/speckle
+2
View File
@@ -0,0 +1,2 @@
[tools]
python = '3.13'
+3 -3
View File
@@ -1,7 +1,7 @@
[project]
name = "speckle-automate-function"
version = "0.1.0"
requires-python = ">=3.11"
requires-python = ">=3.13"
authors = [{ name = "Speckle Systems", email = "hello@speckle.systems" }]
maintainers = [{ name = "Speckle Systems", email = "hello@speckle.systems" }]
description = "A Speckle Automate function template using specklepy"
@@ -9,13 +9,13 @@ readme = "README.md"
license = "Apache-2.0"
keywords = ["speckle", "automate", "bim", "aec"]
dependencies = ["specklepy==3.0.0"]
dependencies = ["specklepy==3.1.0"]
[project.optional-dependencies]
dev = [
"mypy==1.13.0",
"pytest==7.4.4",
"ruff==0.11.12",
"ruff==0.14.14",
]
[tool.ruff]