Bumping version to: 4.1 (#4346)
This commit is contained in:
parent
179d9c7b48
commit
0175949cab
3
PKGBUILD
3
PKGBUILD
|
|
@ -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=(
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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 :"
|
||||
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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} :"
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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 ""
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in New Issue