Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
os: ['ubuntu-latest']
python-version: [
'3.9',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: let's raise this up to 3.10 at some point in the **near ** future

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, we can keep it until GHA phases it out?

'3.13',
'3.14',
]

env:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Adaptive Technologies",
"Topic :: Communications",
"Topic :: Database",
Expand Down
7 changes: 6 additions & 1 deletion src/cratedb_about/bundle/llmstxt.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import dataclasses
import logging
import shutil
import sys
from importlib import resources
from importlib.abc import Traversable

if sys.version_info < (3, 11):
from importlib.abc import Traversable
else:
from importlib.resources.abc import Traversable
from pathlib import Path

from markdown import markdown
Expand Down