Bumping version to: 4.1 (#4346)

This commit is contained in:
Anton Hvornum 2026-03-31 23:02:14 +02:00 committed by GitHub
parent 179d9c7b48
commit 0175949cab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 40 additions and 6 deletions

View File

@ -5,7 +5,7 @@
# Contributor: demostanis worlds <demostanis@protonmail.com>
pkgname=archinstall
pkgver=4.0
pkgver=4.1
pkgrel=1
pkgdesc="Just another guided/automated Arch Linux installer with a twist"
arch=(any)
@ -46,6 +46,7 @@ makedepends=(
'python-wheel'
'python-sphinx_rtd_theme'
'python-pylint'
'python-pylint-pydantic'
'ruff'
)
optdepends=(

View File

@ -2093,3 +2093,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -2023,3 +2023,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -2045,6 +2045,9 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""
#~ msgid "All open-source"
#~ msgstr "Alle quelloffene"

View File

@ -2189,3 +2189,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -1934,3 +1934,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -2004,6 +2004,9 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""
#~ msgid "Add :"
#~ msgstr "Añadir :"

View File

@ -2177,3 +2177,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -2147,3 +2147,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -2057,6 +2057,9 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""
#, python-brace-format
#~ msgid "Edit {origkey} :"
#~ msgstr "Modifier {origkey} :"

View File

@ -2134,3 +2134,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -2087,3 +2087,6 @@ msgstr ""
msgid "Password strength: Strong"
msgstr ""
msgid "The selected desktop profile requires a regular user to log in via the greeter"
msgstr ""

View File

@ -4,17 +4,17 @@ build-backend = "setuptools.build_meta"
[project]
name = "archinstall"
version = "4.0"
version = "4.1"
description = "Arch Linux installer - guided, templates etc."
authors = [
{name = "Anton Hvornum", email = "anton@hvornum.se"},
]
license = "GPL-3.0-only"
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.14"
keywords = ["linux", "arch", "archinstall", "installer"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX :: Linux",
]
dependencies = [
@ -65,7 +65,7 @@ include-package-data = true
archinstall = "archinstall"
[tool.mypy]
python_version = "3.12"
python_version = "3.14"
files = "."
exclude = "^build/"
disallow_any_explicit = false
@ -143,7 +143,7 @@ ignore-paths = [
"^node_modules/",
]
persistent = false
py-version = "3.12"
py-version = "3.14"
recursive = true
[tool.pylint.format]