Skip to content

Commit a84d7ad

Browse files
gvanrossumilevkivskyi
authored andcommitted
Bump version to 3.6.2 and use setuptools instead of distutils (#453)
Also update metadata to remove compatibility with 3.5+, and add Ivan to the list of authors.
1 parent 59c0987 commit a84d7ad

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
# coding: utf-8
33

44
import sys
5-
from distutils.core import setup
5+
from setuptools import setup
66

77
if sys.version_info < (2, 7, 0) or (3, 0, 0) <= sys.version_info < (3, 3, 0):
88
sys.stderr.write('ERROR: You need Python 2.7 or 3.3+ '
99
'to install the typing package.\n')
1010
exit(1)
1111

12-
version = '3.6.1'
12+
version = '3.6.2'
1313
description = 'Type Hints for Python'
1414
long_description = '''\
1515
Typing -- Type Hints for Python
1616
1717
This is a backport of the standard library typing module to Python
18-
versions older than 3.6.
18+
versions older than 3.5.
1919
2020
Typing defines a standard notation for Python function and variable
2121
type annotations. The notation can be used for documenting code in a
@@ -35,16 +35,14 @@
3535
'Programming Language :: Python :: 2.7',
3636
'Programming Language :: Python :: 3.3',
3737
'Programming Language :: Python :: 3.4',
38-
'Programming Language :: Python :: 3.5',
39-
'Programming Language :: Python :: 3.6',
4038
'Topic :: Software Development',
4139
]
4240

4341
setup(name='typing',
4442
version=version,
4543
description=description,
4644
long_description=long_description,
47-
author='Guido van Rossum, Jukka Lehtosalo, Łukasz Langa',
45+
author='Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Ivan Levkivskyi',
4846
author_email='[email protected]',
4947
url='https://docs.python.org/3/library/typing.html',
5048
license='PSF',

0 commit comments

Comments
 (0)