diff options
author | Helmut Grohne <helmut@subdivi.de> | 2024-02-21 15:19:02 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2024-02-21 15:19:02 +0100 |
commit | 5a99eedd5909fc5afaf27899770a249d82d26489 (patch) | |
tree | c72a99be93c274d343898f3419fa1d10ce25e570 | |
parent | 2737f07b6bcb3ca19b8582b5319341c01fd0e015 (diff) | |
download | python-linuxnamespaces-5a99eedd5909fc5afaf27899770a249d82d26489.tar.gz |
pyproject.toml: minimum python version
We rely on PEP 585 and hence, 3.9 is a hard requirement.
-rw-r--r-- | pyproject.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index d9bb0e1..9db7f3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ classifiers = [ "Typing :: Typed", "Programming Language :: Python :: 3", ] +requires-python = ">=3.9" [project.optional-dependencies] test = ["pytest"] |