net-misc/httpstat: disable py3.14

py3.14 doesn't work:
```
  File "/usr/lib/python3.14/site-packages/setuptools/build_meta.py", line 317, in run_setup
    exec(code, locals())
    ~~~~^^^^^^^^^^^^^^^^
  File "<string>", line 30, in <module>
  File "<string>", line 17, in get_version
AttributeError: 'Constant' object has no attribute 's'
 * ERROR: net-misc/httpstat-1.3.1-r1::gentoo failed (compile phase):
 *   Wheel build failed
 *
```

I didn't notice because of wheel reuse (now disabled it).

Fixes: 56ba436ee3
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2026-04-24 04:46:58 +01:00
parent 68c9306804
commit 06b78ad6ed

View File

@@ -1,10 +1,10 @@
# Copyright 1999-2025 Gentoo Authors
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} pypy3 )
PYTHON_COMPAT=( python3_{11..13} pypy3 )
inherit distutils-r1
DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and clarity"