Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -46,6 +46,7 @@ makedepends=(
'python-wheel'
'python-sphinx_rtd_theme'
'python-pylint'
'python-pylint-pydantic'
'ruff'
)
optdepends=(
Expand Down
3 changes: 3 additions & 0 deletions archinstall/locales/ar/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/cs/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/de/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
3 changes: 3 additions & 0 deletions archinstall/locales/el/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/en/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/es/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 :"

Expand Down
3 changes: 3 additions & 0 deletions archinstall/locales/et/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/fi/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/fr/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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} :"
3 changes: 3 additions & 0 deletions archinstall/locales/ga/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
3 changes: 3 additions & 0 deletions archinstall/locales/he/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -143,7 +143,7 @@ ignore-paths = [
"^node_modules/",
]
persistent = false
py-version = "3.12"
py-version = "3.14"
recursive = true

[tool.pylint.format]
Expand Down
Loading