Skip to content

Commit 5ce4a56

Browse files
committed
py-typing-extensions: Update to 4.3.0
Changes: # Release 4.3.0 (July 1, 2022) - Add `typing_extensions.NamedTuple`, allowing for generic `NamedTuple`s on Python <3.11 (backport from python/cpython#92027, by Serhiy Storchaka). Patch by Alex Waygood (@AlexWaygood). - Adjust `typing_extensions.TypedDict` to allow for generic `TypedDict`s on Python <3.11 (backport from python/cpython#27663, by Samodya Abey). Patch by Alex Waygood (@AlexWaygood). # Release 4.2.0 (April 17, 2022) - Re-export `typing.Unpack` and `typing.TypeVarTuple` on Python 3.11. - Add `ParamSpecArgs` and `ParamSpecKwargs` to `__all__`. - Improve "accepts only single type" error messages. - Improve the distributed package. Patch by Marc Mueller (@cdce8p). - Update `typing_extensions.dataclass_transform` to rename the `field_descriptors` parameter to `field_specifiers` and accept arbitrary keyword arguments. - Add `typing_extensions.get_overloads` and `typing_extensions.clear_overloads`, and add registry support to `typing_extensions.overload`. Backport from python/cpython#89263. - Add `typing_extensions.assert_type`. Backport from bpo-46480. - Drop support for Python 3.6. Original patch by Adam Turner (@AA-Turner). # Release 4.1.1 (February 13, 2022) - Fix importing `typing_extensions` on Python 3.7.0 and 3.7.1. Original patch by Nikita Sobolev (@sobolevn). # Release 4.1.0 (February 12, 2022) - Runtime support for PEP 646, adding `typing_extensions.TypeVarTuple` and `typing_extensions.Unpack`. - Add interaction of `Required` and `NotRequired` with `__required_keys__`, `__optional_keys__` and `get_type_hints()`. Patch by David Cabot (@d-k-bo). - Runtime support for PEP 675 and `typing_extensions.LiteralString`. - Add `Never` and `assert_never`. Backport from bpo-46475. - `ParamSpec` args and kwargs are now equal to themselves. Backport from bpo-46676. Patch by Gregory Beauregard (@GBeauregard). - Add `reveal_type`. Backport from bpo-46414. - Runtime support for PEP 681 and `typing_extensions.dataclass_transform`. - `Annotated` can now wrap `ClassVar` and `Final`. Backport from bpo-46491. Patch by Gregory Beauregard (@GBeauregard). - Add missed `Required` and `NotRequired` to `__all__`. Patch by Yuri Karabas (@uriyyo). - The `@final` decorator now sets the `__final__` attribute on the decorated object to allow runtime introspection. Backport from bpo-46342. - Add `is_typeddict`. Patch by Chris Moradi (@chrismoradi) and James Hilton-Balfe (@Gobot1234). # Release 4.0.1 (November 30, 2021) - Fix broken sdist in release 4.0.0. Patch by Adam Turner (@AA-Turner). - Fix equality comparison for `Required` and `NotRequired`. Patch by Jelle Zijlstra (@JelleZijlstra). - Fix usage of `Self` as a type argument. Patch by Chris Wesseling (@CharString) and James Hilton-Balfe (@Gobot1234). # Release 4.0.0 (November 14, 2021) - Starting with version 4.0.0, typing_extensions uses Semantic Versioning. See the README for more information. - Dropped support for Python versions 3.5 and older, including Python 2.7. - Simplified backports for Python 3.6.0 and newer. Patch by Adam Turner (@AA-Turner). ## Added in version 4.0.0 - Runtime support for PEP 673 and `typing_extensions.Self`. Patch by James Hilton-Balfe (@Gobot1234). - Runtime support for PEP 655 and `typing_extensions.Required` and `NotRequired`. Patch by David Foster (@davidfstr). ## Removed in version 4.0.0 The following non-exported but non-private names have been removed as they are unneeded for supporting Python 3.6 and newer. - TypingMeta - OLD_GENERICS - SUBS_TREE - HAVE_ANNOTATED - HAVE_PROTOCOLS - V_co - VT_co # Previous releases Prior to release 4.0.0 we did not provide a changelog. Please check the Git history for details.
1 parent 4b1c706 commit 5ce4a56

3 files changed

Lines changed: 18 additions & 19 deletions

File tree

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
# $NetBSD: Makefile,v 1.12 2022/01/04 20:53:46 wiz Exp $
1+
# $NetBSD: Makefile,v 1.13 2022/07/25 12:37:44 leot Exp $
22

3-
DISTNAME= typing_extensions-3.10.0.2
3+
DISTNAME= typing_extensions-4.3.0
44
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
5-
PKGREVISION= 1
65
CATEGORIES= devel python
76
MASTER_SITES= ${MASTER_SITE_PYPI:=t/typing-extensions/}
87

@@ -11,12 +10,11 @@ HOMEPAGE= https://github.com/python/typing
1110
COMMENT= Backported and Experimental Type Hints for Python
1211
LICENSE= python-software-foundation
1312

14-
.include "../../lang/python/pyversion.mk"
15-
.if ${_PYTHON_VERSION} == 27
16-
DEPENDS+= ${PYPKGPREFIX}-typing>=3.7.4:../../devel/py-typing
17-
.endif
13+
TOOL_DEPENDS+= ${PYPKGPREFIX}-flit_core-[0-9]*:../../devel/py-flit_core
14+
15+
PYTHON_VERSIONS_INCOMPATIBLE= 27
1816

1917
USE_LANGUAGES= # none
2018

21-
.include "../../lang/python/egg.mk"
19+
.include "../../lang/python/wheel.mk"
2220
.include "../../mk/bsd.pkg.mk"

devel/py-typing-extensions/PLIST

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
@comment $NetBSD: PLIST,v 1.3 2019/11/05 08:39:57 adam Exp $
2-
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3-
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4-
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5-
${PYSITELIB}/${EGG_INFODIR}/requires.txt
6-
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
1+
@comment $NetBSD: PLIST,v 1.4 2022/07/25 12:37:44 leot Exp $
2+
${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
3+
${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
4+
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
5+
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
6+
${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
7+
${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
8+
${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json
79
${PYSITELIB}/typing_extensions.py
810
${PYSITELIB}/typing_extensions.pyc
9-
${PYSITELIB}/typing_extensions.pyo
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$NetBSD: distinfo,v 1.11 2021/10/26 10:19:13 nia Exp $
1+
$NetBSD: distinfo,v 1.12 2022/07/25 12:37:44 leot Exp $
22

3-
BLAKE2s (typing_extensions-3.10.0.2.tar.gz) = 08d11a75425c09ca6ea8899a97d5a739205dd924bbed0cbebd3766e1b5354e15
4-
SHA512 (typing_extensions-3.10.0.2.tar.gz) = 171ada56758fb04328a2cafefe80b70fbf166f2d799406883df642927964925ca73f04d0646661cd4fd016dfb5e1856b84f362e3b404c27b368ca06a09cf87db
5-
Size (typing_extensions-3.10.0.2.tar.gz) = 46048 bytes
3+
BLAKE2s (typing_extensions-4.3.0.tar.gz) = 093f2bf5dc407d7b2f35c9e9bb7b3d92e9722cd55582bf0d4433d48f6d506839
4+
SHA512 (typing_extensions-4.3.0.tar.gz) = 69e4a393aaaaa45d20f32027cc35c77a950bf1f9b82f0eb2906a4b466eb319b867b5f53c0afc71ca613817d7e37d305fe73c50e93b1d4b389fdb8f1e4d5f8535
5+
Size (typing_extensions-4.3.0.tar.gz) = 47430 bytes

0 commit comments

Comments
 (0)