Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 4658f94

Browse files
committed
Release 7.0.0
1 parent 72f5dd3 commit 4658f94

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ and [extension modules](http://docs.python.org/3/howto/cporting.html).
8282

8383
# Change Log
8484

85+
# 7.0.0
86+
* Drop Python 3.3 support
87+
* Usual overrides updates
88+
8589
# 6.0.0
8690
* Refactor some code to avoid a warning in Python 3.6
8791
* Stop calling pip's internals (pip 10 would break everything)

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@
1313
tests_require = [dep.strip() for dep in file.readlines()]
1414

1515
setup(name='caniusepython3',
16-
version='6.0.0',
16+
version='7.0.0',
1717
description='Determine what projects are blocking you from porting to Python 3',
1818
long_description=long_description,
1919
author='Brett Cannon',
2020
author_email='brett@python.org',
2121
url='https://github.com/brettcannon/caniusepython3',
2222
packages=['caniusepython3', 'caniusepython3.test'],
2323
include_package_data=True,
24-
# Support Python 2.7 or >=3.4.
2524
requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
2625
install_requires=['distlib', 'setuptools', 'packaging', # Input flexibility
2726
'argparse', 'backports.functools_lru_cache',

0 commit comments

Comments
 (0)