xiio

really simple async runtime
git clone https://git.ce9e.org/xiio.git

commit
feefa7d576feb55762f29663aef8e7d81d2243ae
parent
5750a828cfb92a889a672e3e018ce4c0f1a719b1
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2026-04-25 11:44
bump minimum python version to 3.11

asyncio.timeout() is not available before that

Diffstat

M .github/workflows/main.yml 2 +-
M pyproject.toml 1 +

2 files changed, 2 insertions, 1 deletions


diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml

@@ -5,7 +5,7 @@ jobs:
    5     5     strategy:
    6     6       matrix:
    7     7         include:
    8    -1           - python: '3.10'
   -1     8           - python: '3.11'
    9     9           - python: '3.14'
   10    10     steps:
   11    11     - uses: actions/checkout@v6

diff --git a/pyproject.toml b/pyproject.toml

@@ -11,6 +11,7 @@ license = "MIT"
   11    11 authors = [
   12    12     {name = "Tobias Bengfort", email = "tobias.bengfort@posteo.de"}
   13    13 ]
   -1    14 requires-python = ">= 3.11"
   14    15 
   15    16 [project.urls]
   16    17 Homepage = "https://github.com/xi/xiio"