Skip to content

Commit edd78b2

Browse files
prepare release 3.10.0.0 (#805)
1 parent c33fe16 commit edd78b2

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'to install the typing package.\n')
1010
exit(1)
1111

12-
version = '3.7.4.3'
12+
version = '3.10.0.0'
1313
description = 'Type Hints for Python'
1414
long_description = '''\
1515
Typing -- Type Hints for Python

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36
2+
envlist = py27, py34
33

44
[testenv]
55
changedir = src

typing_extensions/setup.py

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,24 @@
99
'to install the typing package.\n')
1010
exit(1)
1111

12-
version = '3.7.4.3'
12+
version = '3.10.0.0'
1313
description = 'Backported and Experimental Type Hints for Python 3.5+'
1414
long_description = '''\
1515
Typing Extensions -- Backported and Experimental Type Hints for Python
1616
17-
The ``typing`` module was added to the standard library in Python 3.5 on
18-
a provisional basis and will no longer be provisional in Python 3.7. However,
19-
this means users of Python 3.5 - 3.6 who are unable to upgrade will not be
17+
The ``typing`` module was added to the standard library in Python 3.5, but
18+
many new features have been added to the module since then.
19+
This means users of Python 3.5 - 3.6 who are unable to upgrade will not be
2020
able to take advantage of new types added to the ``typing`` module, such as
21-
``typing.Text`` or ``typing.Coroutine``.
21+
``typing.Protocol`` or ``typing.TypedDict``.
2222
23-
The ``typing_extensions`` module contains both backports of these changes
24-
as well as experimental types that will eventually be added to the ``typing``
25-
module, such as ``Protocol`` or ``TypedDict``.
23+
The ``typing_extensions`` module contains backports of these changes.
24+
Experimental types that will eventually be added to the ``typing``
25+
module are also included in ``typing_extensions``, such as
26+
``typing.ParamSpec`` and ``typing.TypeGuard``.
2627
27-
Users of other Python versions should continue to install and use
28-
the ``typing`` module from PyPi instead of using this one unless specifically
28+
Users of Python versions before 3.5 should install and use
29+
the ``typing`` module from PyPI instead of using this one, unless specifically
2930
writing code that must be compatible with multiple Python versions or requires
3031
experimental types.
3132
'''
@@ -43,6 +44,7 @@
4344
'Programming Language :: Python :: 3.7',
4445
'Programming Language :: Python :: 3.8',
4546
'Programming Language :: Python :: 3.9',
47+
'Programming Language :: Python :: 3.10',
4648
'Topic :: Software Development',
4749
]
4850

@@ -57,7 +59,7 @@
5759
version=version,
5860
description=description,
5961
long_description=long_description,
60-
author='Guido van Rossum, Jukka Lehtosalo, Lukasz Langa, Michael Lee',
62+
author='Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee',
6163
author_email='[email protected]',
6264
url='https://github.com/python/typing/blob/master/typing_extensions/README.rst',
6365
license='PSF',

0 commit comments

Comments
 (0)