Skip to content
Snippets Groups Projects
Unverified Commit 9fd45fb3 authored by Oliver Smith's avatar Oliver Smith
Browse files

Bump minimum python3 version to 3.10 (MR 2357)

parent 2b577a86
No related branches found
No related tags found
1 merge request!2357Bump minimum python3 version to 3.10
......@@ -10,7 +10,7 @@ fi
# shellcheck disable=SC2046
vermin \
-t=3.9- \
-t=3.10- \
--backport argparse \
--backport configparser \
--backport enum \
......
......@@ -43,8 +43,8 @@ Issues are being tracked
* [Linux kernel 3.17 or higher](https://postmarketos.org/oldkernel)
* Note: kernel versions between 5.8.8 and 6.0 might
[have issues with parted](https://gitlab.com/postmarketOS/pmbootstrap/-/issues/2309).
* Python 3.9+
* For python3 <= 3.10: tomli
* Python 3.10+
* For python3 < 3.11: tomli
* OpenSSL
* git
* ps
......
......@@ -41,8 +41,8 @@ pmbootstrap requires the following:
Kernel version 5.8 - 6.0 might have issues with loop-devices
* Python 3.9+
* For python3 <= 3.10: tomli
* Python 3.10+
* For python3 < 3.11: tomli
* OpenSSL
* git
* ps
......
......@@ -29,8 +29,8 @@ __version__ = "3.0.0_alpha"
# Python version check
version = sys.version_info
if version < (3, 9):
print("You need at least Python 3.9 to run pmbootstrap")
if version < (3, 10):
print("You need at least Python 3.10 to run pmbootstrap")
print("(You are running it with Python " + str(version.major) + "." + str(version.minor) + ")")
sys.exit()
......
......@@ -30,8 +30,8 @@ exclude = ["aports", "docs", "keys", "test", "test.pmb_test"]
[tool.ruff]
line-length=100
# Assume Python 3.9
target-version = "py39"
# Assume Python 3.10
target-version = "py310"
[tool.ruff.lint]
extend-select = ["UP"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment