@planqk/planqk-api-sdk 1.3.4 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitlab-ci.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  variables:
2
2
  TWINE_USERNAME: __token__
3
- UV_VERSION: 0.6
3
+ UV_VERSION: 0.8
4
4
  PYTHON_VERSION: 3.11
5
5
  BASE_LAYER: bookworm-slim
6
6
  # GitLab CI creates a separate mountpoint for the build directory,
@@ -23,13 +23,16 @@ semantic-release:
23
23
  - if: '$CI_PIPELINE_SOURCE == "web"'
24
24
  - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
25
25
  variables:
26
+ BASE_LAYER: bookworm
26
27
  GIT_AUTHOR_NAME: "$GITLAB_USER_NAME"
27
28
  GIT_AUTHOR_EMAIL: "$GITLAB_USER_EMAIL"
28
29
  GIT_COMMITTER_NAME: "$GITLAB_USER_NAME"
29
30
  GIT_COMMITTER_EMAIL: "$GITLAB_USER_EMAIL"
30
- image: node:lts
31
+ image: ghcr.io/astral-sh/uv:$UV_VERSION-python$PYTHON_VERSION-$BASE_LAYER
31
32
  before_script:
32
- - apt-get update && apt-get install -y --no-install-recommends git-core ca-certificates
33
+ - curl -o- https://fnm.vercel.app/install | bash
34
+ - source ~/.bashrc
35
+ - fnm install 22
33
36
  - npm install -g semantic-release @semantic-release/gitlab @semantic-release/git @semantic-release/exec
34
37
  script:
35
38
  - semantic-release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planqk/planqk-api-sdk",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "SDK to interact with the official PLANQK API.",
5
5
  "author": "Kipu Quantum GmbH",
6
6
  "contributors": [
@@ -1 +1 @@
1
- __version__ = "1.3.4"
1
+ __version__ = "1.3.5"
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "planqk-api-sdk"
3
- version = "1.3.4"
3
+ version = "1.3.5"
4
4
  description = "SDK to interact with the official PLANQK API."
5
5
  authors = [
6
6
  { name = "Kipu Quantum GmbH", email = "info@kipu-quantum.com" },