Add support for Python 3.13 and drop support for Python 3.8

This commit is contained in:
Lauri Virtanen
2024-10-12 15:06:51 +03:00
parent 87dd6075f1
commit aa526f4cb3
2 changed files with 3 additions and 3 deletions

View File

@@ -5,17 +5,17 @@ build-backend = 'maturin'
[project]
name = 'limbo'
description = "Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite."
requires-python = '>=3.8'
requires-python = '>=3.9'
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Rust',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',