Skip to content

Commit e6e1638

Browse files
chore(deps): update from template
1 parent 76e5ab6 commit e6e1638

5 files changed

Lines changed: 75 additions & 37 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_commit: v0.8.5
1+
_commit: v0.8.7
22
_src_path: gh:helmut-hoffer-von-ankershoffen/oe-python-template
33
attestations_enabled: true
44
author_email: helmuthva@gmail.com

.github/workflows/vercel-preview.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
Deploy-Preview:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414

15-
- name: Install Vercel CLI
16-
run: npm install --global vercel@latest
15+
- name: Install uv (python package manager)
16+
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
17+
with:
18+
version: "0.6.3"
19+
enable-cache: true
20+
cache-dependency-glob: uv.lock
1721

1822
- name: Install Vercel CLI
1923
run: npm install --global vercel@latest

.github/workflows/vercel-production.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
Deploy-Production:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414

15-
- name: Install Vercel CLI
16-
run: npm install --global vercel@latest
15+
- name: Install uv (python package manager)
16+
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
17+
with:
18+
version: "0.6.3"
19+
enable-cache: true
20+
cache-dependency-glob: uv.lock
1721

1822
- name: Install Vercel CLI
1923
run: npm install --global vercel@latest

docs/source/_static/openapi_v1.yaml

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,10 @@ openapi: 3.1.0
9090
paths:
9191
/echo/{text}:
9292
get:
93-
description: "Echo back the provided text.\n\nArgs:\n text (str): The text\
94-
\ to echo.\n\nReturns:\n Echo: The echo.\n\nRaises:\n 422 Unprocessable\
93+
description: "Echo back the provided text.\n\nArgs:\n text (str): The
94+
text\
95+
\ to echo.\n\nReturns:\n Echo: The echo.\n\nRaises:\n 422
96+
Unprocessable\
9597
\ Entity: If text is not provided or empty."
9698
operationId: echo_echo__text__get
9799
parameters:
@@ -119,12 +121,18 @@ paths:
119121
- Basics
120122
/health:
121123
get:
122-
description: "Check the health of the service.\n\nThis endpoint returns the\
123-
\ health status of the service.\nThe health status can be either UP or DOWN.\n\
124-
If the service is healthy, the status will be UP.\nIf the service is unhealthy,\
125-
\ the status will be DOWN and a reason will be provided.\nThe response will\
126-
\ have a 200 OK status code if the service is healthy,\nand a 500 Internal\
127-
\ Server Error status code if the service is unhealthy.\n\nReturns:\n Health:\
124+
description: "Check the health of the service.\n\nThis endpoint returns
125+
the\
126+
\ health status of the service.\nThe health status can be either UP or
127+
DOWN.\n\
128+
If the service is healthy, the status will be UP.\nIf the service is
129+
unhealthy,\
130+
\ the status will be DOWN and a reason will be provided.\nThe response
131+
will\
132+
\ have a 200 OK status code if the service is healthy,\nand a 500
133+
Internal\
134+
\ Server Error status code if the service is unhealthy.\n\nReturns:\n
135+
Health:\
128136
\ The health status of the service."
129137
operationId: health_health_get
130138
responses:
@@ -139,12 +147,18 @@ paths:
139147
- Observability
140148
/healthz:
141149
get:
142-
description: "Check the health of the service.\n\nThis endpoint returns the\
143-
\ health status of the service.\nThe health status can be either UP or DOWN.\n\
144-
If the service is healthy, the status will be UP.\nIf the service is unhealthy,\
145-
\ the status will be DOWN and a reason will be provided.\nThe response will\
146-
\ have a 200 OK status code if the service is healthy,\nand a 500 Internal\
147-
\ Server Error status code if the service is unhealthy.\n\nReturns:\n Health:\
150+
description: "Check the health of the service.\n\nThis endpoint returns
151+
the\
152+
\ health status of the service.\nThe health status can be either UP or
153+
DOWN.\n\
154+
If the service is healthy, the status will be UP.\nIf the service is
155+
unhealthy,\
156+
\ the status will be DOWN and a reason will be provided.\nThe response
157+
will\
158+
\ have a 200 OK status code if the service is healthy,\nand a 500
159+
Internal\
160+
\ Server Error status code if the service is unhealthy.\n\nReturns:\n
161+
Health:\
148162
\ The health status of the service."
149163
operationId: health_healthz_get
150164
responses:
@@ -159,7 +173,8 @@ paths:
159173
- Observability
160174
/hello-world:
161175
get:
162-
description: "Return a hello world message.\n\nReturns:\n _HelloWorldResponse:\
176+
description: "Return a hello world message.\n\nReturns:\n
177+
_HelloWorldResponse:\
163178
\ A response containing the hello world message."
164179
operationId: hello_world_hello_world_get
165180
responses:

docs/source/_static/openapi_v2.yaml

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,10 @@ openapi: 3.1.0
104104
paths:
105105
/echo:
106106
post:
107-
description: "Echo back the provided utterance.\n\nArgs:\n request (Utterance):\
108-
\ The utterance to echo back.\n\nReturns:\n Echo: The echo.\n\nRaises:\n\
107+
description: "Echo back the provided utterance.\n\nArgs:\n request
108+
(Utterance):\
109+
\ The utterance to echo back.\n\nReturns:\n Echo: The
110+
echo.\n\nRaises:\n\
109111
\ 422 Unprocessable Entity: If utterance is not provided or empty."
110112
operationId: echo_v2_echo_post
111113
requestBody:
@@ -132,12 +134,18 @@ paths:
132134
- Basics
133135
/health:
134136
get:
135-
description: "Check the health of the service.\n\nThis endpoint returns the\
136-
\ health status of the service.\nThe health status can be either UP or DOWN.\n\
137-
If the service is healthy, the status will be UP.\nIf the service is unhealthy,\
138-
\ the status will be DOWN and a reason will be provided.\nThe response will\
139-
\ have a 200 OK status code if the service is healthy,\nand a 500 Internal\
140-
\ Server Error status code if the service is unhealthy.\n\nReturns:\n Health:\
137+
description: "Check the health of the service.\n\nThis endpoint returns
138+
the\
139+
\ health status of the service.\nThe health status can be either UP or
140+
DOWN.\n\
141+
If the service is healthy, the status will be UP.\nIf the service is
142+
unhealthy,\
143+
\ the status will be DOWN and a reason will be provided.\nThe response
144+
will\
145+
\ have a 200 OK status code if the service is healthy,\nand a 500
146+
Internal\
147+
\ Server Error status code if the service is unhealthy.\n\nReturns:\n
148+
Health:\
141149
\ The health status of the service."
142150
operationId: health_health_get
143151
responses:
@@ -152,12 +160,18 @@ paths:
152160
- Observability
153161
/healthz:
154162
get:
155-
description: "Check the health of the service.\n\nThis endpoint returns the\
156-
\ health status of the service.\nThe health status can be either UP or DOWN.\n\
157-
If the service is healthy, the status will be UP.\nIf the service is unhealthy,\
158-
\ the status will be DOWN and a reason will be provided.\nThe response will\
159-
\ have a 200 OK status code if the service is healthy,\nand a 500 Internal\
160-
\ Server Error status code if the service is unhealthy.\n\nReturns:\n Health:\
163+
description: "Check the health of the service.\n\nThis endpoint returns
164+
the\
165+
\ health status of the service.\nThe health status can be either UP or
166+
DOWN.\n\
167+
If the service is healthy, the status will be UP.\nIf the service is
168+
unhealthy,\
169+
\ the status will be DOWN and a reason will be provided.\nThe response
170+
will\
171+
\ have a 200 OK status code if the service is healthy,\nand a 500
172+
Internal\
173+
\ Server Error status code if the service is unhealthy.\n\nReturns:\n
174+
Health:\
161175
\ The health status of the service."
162176
operationId: health_healthz_get
163177
responses:
@@ -172,7 +186,8 @@ paths:
172186
- Observability
173187
/hello-world:
174188
get:
175-
description: "Return a hello world message.\n\nReturns:\n _HelloWorldResponse:\
189+
description: "Return a hello world message.\n\nReturns:\n
190+
_HelloWorldResponse:\
176191
\ A response containing the hello world message."
177192
operationId: hello_world_hello_world_get
178193
responses:

0 commit comments

Comments
 (0)