Skip to content
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

Remove support for Python 3.2 #251

Merged
merged 10 commits into from
May 6, 2015
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ matrix:
env: TOXENV=py26
- python: "2.7"
env: TOXENV=py27
- python: "3.2"
env: TOXENV=py32
- python: "3.3"
env: TOXENV=py33
- python: "3.4"
Expand All @@ -24,8 +22,6 @@ matrix:
env: TOXENV=py26-cryptographyMaster
- python: "2.7"
env: TOXENV=py27-cryptographyMaster
- python: "3.2"
env: TOXENV=py32-cryptographyMaster
- python: "3.3"
env: TOXENV=py33-cryptographyMaster
- python: "3.4"
Expand Down Expand Up @@ -62,7 +58,6 @@ matrix:
env: TOXENV=py27
- env: TOXENV=py26-cryptographyMaster
- env: TOXENV=py27-cryptographyMaster
- env: TOXENV=py32-cryptographyMaster
- env: TOXENV=py33-cryptographyMaster
- env: TOXENV=py34-cryptographyMaster
- env: TOXENV=pypy-cryptographyMaster
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2015-05-02 Jim Shaver <dcypherd@gmail.com>

* .travis.yml, setup.py, tox.ini: Removed support for Python 3.2.
This version is rarely used and is now depricated by a major
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"deprecated"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good eye, I always have trouble with that word. cc265b2

dependency of pyOpenSSL(cryptography). Affected users should upgrade
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this is complete bikeshedding but please add a space before (cryptography) and a second space before Affected. Thanks!

to Python 3.3+.

2015-04-15 Paul Kehrer <paul.l.kehrer@gmail.com>

* OpenSSL/crypto.py, OpenSSL/test/test_crypto.py: Switch to utf8string
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ def run_tests(self):
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',

'Programming Language :: Python :: Implementation :: CPython',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {pypy,py26,py27,py32,py33,py34}{,-cryptographyMaster},pypi-readme,check-manifest
envlist = {pypy,py26,py33,py34}{,-cryptographyMaster},pypi-readme,check-manifest
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

py27 should not be removed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops! :D ff6f4e5


[testenv]
deps =
Expand Down