Skip to content

Remove Python 3.2 from trove classifier and README #2063

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 27, 2016
Merged

Remove Python 3.2 from trove classifier and README #2063

merged 2 commits into from
Aug 27, 2016

Conversation

johnthagen
Copy link
Contributor

@johnthagen johnthagen commented Aug 27, 2016

Mypy 0.4.3 dropped support for Python 3.2.

This PR also adds the generic 'Programming Language :: Python :: 3' trove classifier.

Question: Should

if sys.version_info < (3, 2, 0):
    sys.stderr.write("ERROR: You need Python 3.2 or later to use mypy.\n")
    exit(1)

Be changed to?

if sys.version_info < (3, 3, 0):
    sys.stderr.write("ERROR: You need Python 3.3 or later to use mypy.\n")
    exit(1)

@johnthagen johnthagen changed the title Remove Python 3.2 trove classifier and add generic Python :: 3 Remove Python 3.2 from trove classifier and README Aug 27, 2016
@gvanrossum gvanrossum merged commit d76554b into python:master Aug 27, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants