diff options
author | 2023-02-05 17:29:28 +0100 | |
---|---|---|
committer | 2023-02-05 18:07:01 +0100 | |
commit | 588eecee6c6ac8678e0a747450a243e4516bfcf5 (patch) | |
tree | 97261894a6402cbc6a622afddfd9aaf8f80f9cde /dev-python/mypy_extensions | |
parent | dev-python/humanize: Bump to 4.6.0 (diff) | |
download | gentoo-588eecee6c6ac8678e0a747450a243e4516bfcf5.tar.gz gentoo-588eecee6c6ac8678e0a747450a243e4516bfcf5.tar.bz2 gentoo-588eecee6c6ac8678e0a747450a243e4516bfcf5.zip |
dev-python/mypy_extensions: Bump to 0.4.4
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/mypy_extensions')
-rw-r--r-- | dev-python/mypy_extensions/Manifest | 1 | ||||
-rw-r--r-- | dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/mypy_extensions/Manifest b/dev-python/mypy_extensions/Manifest index 17b6e9195dc8..7737e25c476f 100644 --- a/dev-python/mypy_extensions/Manifest +++ b/dev-python/mypy_extensions/Manifest @@ -1 +1,2 @@ DIST mypy_extensions-0.4.3.gh.tar.gz 5545 BLAKE2B 8f1f988562390ee1ba3d90cafafec73c6fe080eef6b4321252d3b3aeffebf1ad13bdcae7ae75c69eac7bef91dcf3f846ae7f9a3f2ad6bad9de2bc8cfe5eed29f SHA512 22d8dc538cf6f77d97f4113dd34fce8095dd98944c7613fab2b3e71a3e9b7df1374654af41ead5c934f789ef1b72f54d980ab06f3ca28b8b4c6bb14ba1ca3ce2 +DIST mypy_extensions-0.4.4.gh.tar.gz 5555 BLAKE2B 89852229a2c37994aac1bdb0026a14489ea51b44286371d6b4711ad9b9df9a9827fd9b32bc7f2768b7e5890481560bd7221e1262f3e27b69fe964f9e0eb081e0 SHA512 86fe3cc95b856476e2f8df7f64084277411435a17726407fbd9a114e5684b8ffb0da1cf9eb3a17e19152e7958efcfaf57bf7236bcefe6eb7f4098b14ed302949 diff --git a/dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild b/dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild new file mode 100644 index 000000000000..3fa95ff86e2a --- /dev/null +++ b/dev-python/mypy_extensions/mypy_extensions-0.4.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="Optional static typing for Python" +HOMEPAGE=" + https://www.mypy-lang.org/ + https://github.com/python/mypy_extensions/ +" +SRC_URI=" + https://github.com/python/mypy_extensions/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # This test assumes we get a TypeError, but that is no longer true in 3.11 + "tests/testextensions.py::TypedDictTests::test_typeddict_errors" +) + +python_test() { + epytest tests/*.py +} |