We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f11d66 commit f6a2404Copy full SHA for f6a2404
python/setup/fedora.py
@@ -14,7 +14,7 @@
14
# pylint: enable=wrong-import-position
15
16
MIN_FEDORA_VERSION = 35
17
-MAX_FEDORA_VERSION = 41
+MAX_FEDORA_VERSION = 42
18
19
20
def configure_networking():
@@ -195,7 +195,6 @@ def install_packages():
195
196
# nicer GNU utilities
197
'duf',
198
- 'eza' if fedora_version >= 39 else 'exa',
199
'ripgrep',
200
201
# repo
@@ -205,6 +204,11 @@ def install_packages():
205
204
'tuxmake',
206
] # yapf: disable
207
+ if fedora_version < 39:
208
+ packages.append('exa')
209
+ elif fedora_version < 42:
210
+ packages.append('eza')
211
+
212
if not lib.setup.is_lxc():
213
packages.append('podman')
214
0 commit comments