about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2025-07-01 11:47:11 +0900
committerNguyễn Gia Phong <cnx@loang.net>2025-07-01 11:47:11 +0900
commita8dc08a11182632ad6fb93af95958c95a09195bd (patch)
tree15afe72218d6379feb541d0f67d634af86aada57
parent7d4b6d742dd412befc3a5cbfdc7c1e125f80c568 (diff)
downloadscadere-a8dc08a11182632ad6fb93af95958c95a09195bd.tar.gz
Fix flit version requirement
Flit 3.12 is needed for the full suppport of license expressions.
-rw-r--r--README.md2
-rw-r--r--pyproject.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 06c7b37..6d737be 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Installing from source should only be considered as a last resort;
 if you are capable of doing so, please also package scadere
 for your distribution.
 
-Scadere requires Python 3.11 or above, and uses [flit] 3.11 or above
+Scadere requires Python 3.11 or later, and uses [flit] 3.12 or above
 as the PEP 517 build backend.  Installation can be done
 with `flit install` or `pip install .`.
 
diff --git a/pyproject.toml b/pyproject.toml
index 33d7266..1e68f65 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
 [build-system]
-requires = [ 'flit_core >=3.11,<4' ]
+requires = [ 'flit_core >=3.12,<4' ]
 build-backend = 'flit_core.buildapi'
 
 [project]