diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2025-07-01 11:47:11 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2025-07-01 11:47:11 +0900 |
commit | a8dc08a11182632ad6fb93af95958c95a09195bd (patch) | |
tree | 15afe72218d6379feb541d0f67d634af86aada57 | |
parent | 7d4b6d742dd412befc3a5cbfdc7c1e125f80c568 (diff) | |
download | scadere-a8dc08a11182632ad6fb93af95958c95a09195bd.tar.gz |
Fix flit version requirement
Flit 3.12 is needed for the full suppport of license expressions.
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 |
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] |