Skip to content

Commit e6b94f3

Browse files
committed
Go back to Python <3.14
...and wait for Beanie to support 3.14
1 parent 5550479 commit e6b94f3

File tree

8 files changed

+511
-375
lines changed

8 files changed

+511
-375
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v6
2424
- uses: actions/setup-python@v6
2525
with:
26-
python-version: "3.14"
26+
python-version: "3.12"
2727
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
2828
- uses: actions/cache@v5
2929
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN cd Tekst-Web && npm install && npm run build-only -- --base=./
1010

1111
# PYTHON ALPINE BASE IMAGE
1212

13-
FROM python:3.14-alpine3.21 AS py-base
13+
FROM python:3.13-alpine3.21 AS py-base
1414
ENV PYTHONFAULTHANDLER=1 \
1515
PYTHONHASHSEED=random \
1616
PYTHONUNBUFFERED=1 \

Tekst-API/openapi.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"title": "Tekst-Dev",
55
"summary": "An online text research platform",
66
"contact": {},
7-
"version": "0.45.0a0"
7+
"version": "0.45.0a1"
88
},
99
"servers": [
1010
{
@@ -5565,7 +5565,7 @@
55655565
}
55665566
}
55675567
},
5568-
"description": "Unprocessable Content"
5568+
"description": "Unprocessable Entity"
55695569
},
55705570
"404": {
55715571
"content": {
@@ -5673,7 +5673,7 @@
56735673
}
56745674
}
56755675
},
5676-
"description": "Unprocessable Content"
5676+
"description": "Unprocessable Entity"
56775677
},
56785678
"401": {
56795679
"content": {

Tekst-API/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tekst"
3-
version = "0.45.0a0"
3+
version = "0.45.0a1"
44
description = "An online text research platform"
55
readme = "README.md"
66
authors = [
@@ -11,7 +11,7 @@ maintainers = [
1111
]
1212
license = "AGPL-3.0-or-later"
1313
license-files = ["LICENSE"]
14-
requires-python = ">=3.14,<3.15"
14+
requires-python = ">=3.12,<3.14"
1515
dependencies = [
1616
"pyhumps<4.0.0,>=3.8.0",
1717
"click<9.0.0,>=8.1.6",

Tekst-API/uv.lock

Lines changed: 499 additions & 363 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tekst-Web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tekst-Web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tekst",
3-
"version": "0.45.0-alpha.0",
3+
"version": "0.45.0-alpha.1",
44
"private": true,
55
"type": "module",
66
"scripts": {

Tekst-Web/src/api/schema.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10017,7 +10017,7 @@ export interface operations {
1001710017
'application/json': components['schemas']['TekstErrorModel'];
1001810018
};
1001910019
};
10020-
/** @description Unprocessable Content */
10020+
/** @description Unprocessable Entity */
1002110021
422: {
1002210022
headers: {
1002310023
[name: string]: unknown;
@@ -10088,7 +10088,7 @@ export interface operations {
1008810088
'application/json': components['schemas']['TekstErrorModel'];
1008910089
};
1009010090
};
10091-
/** @description Unprocessable Content */
10091+
/** @description Unprocessable Entity */
1009210092
422: {
1009310093
headers: {
1009410094
[name: string]: unknown;

0 commit comments

Comments
 (0)