Skip to content

Commit 3bdc82e

Browse files
hugovksybrenstuvel
authored andcommitted
Drop support for EOL Python 3.3
1 parent 4d3bde6 commit 3bdc82e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ language: python
44
# See: https://github.com/travis-ci/travis-ci/issues/3024
55
python:
66
- 2.7
7-
- 3.3
87
- 3.4
98
- 3.5
109
- "pypy"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ Those modules are marked as deprecated in version 3.4.
4040
Furthermore, in 4.0 the I/O functions will be streamlined to always work with bytes on all
4141
supported versions of Python.
4242

43-
Version 4.0 will drop support for Python 2.6, and possibly for Python 3.3.
43+
Version 4.0 will drop support for Python 2.6 and 3.3.

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@
3535
'License :: OSI Approved :: Apache Software License',
3636
'Operating System :: OS Independent',
3737
'Programming Language :: Python',
38+
'Programming Language :: Python :: 2',
3839
'Programming Language :: Python :: 2.7',
3940
'Programming Language :: Python :: 3',
40-
'Programming Language :: Python :: 3.3',
4141
'Programming Language :: Python :: 3.4',
4242
'Programming Language :: Python :: 3.5',
4343
'Programming Language :: Python :: 3.6',
44+
'Programming Language :: Python :: Implementation :: CPython',
45+
'Programming Language :: Python :: Implementation :: PyPy',
4446
'Topic :: Security :: Cryptography',
4547
],
4648
install_requires=[

speed.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ check_command() {
2929
python_versions="
3030
pypy
3131
python2.7
32-
python3.3
3332
python3.4
3433
python3.5
3534
"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# Environment changes have to be manually synced with '.travis.yml'.
3-
envlist = py27,py33,py34,py35,pypy
3+
envlist = py27,py34,py35,pypy
44

55
[pytest]
66
addopts = -v --cov rsa --cov-report term-missing

0 commit comments

Comments
 (0)