🔧 Set minimal hatchling version needed to build the package (#9240)

Set minimal hatchling version needed to build the package

Set the minimal hatchling version that is needed to build fastapi to
1.13.0.  Older versions fail to build because they do not recognize
the trove classifiers used, e.g. 1.12.2 yields:

    ValueError: Unknown classifier in field `project.classifiers`: Framework :: Pydantic

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Michał Górny 2023-06-22 13:35:12 +02:00 committed by GitHub
parent 3279f0ba63
commit 74de9a7b15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[build-system] [build-system]
requires = ["hatchling"] requires = ["hatchling >= 1.13.0"]
build-backend = "hatchling.build" build-backend = "hatchling.build"
[project] [project]