Skip to content

Commit 27e25af

Browse files
committed
Drop support for Python 3.4
Tests on Travis-CI fail on Python 3.4. Since this is an intermediary release to fix some issues for Python 2.7, I keep Python 3.4 as unsupported.
1 parent 3283b12 commit 27e25af

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ cache: pip
99

1010
python:
1111
- "2.7"
12-
- "3.4"
1312
- "3.5"
1413
- "3.6"
1514
- "3.7-dev"

CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Version 4.3 - released 2020-06-12
66

77
Version 4.3 is almost a re-tagged release of version 4.0. It is the last to
88
support Python 2.7. This is now made explicit in the `python_requires` argument
9-
in `setup.py`.
9+
in `setup.py`. Python 3.4 is not supported by this release.
1010

1111
Two security fixes have also been backported, so 4.3 = 4.0 + these two fixes.
1212

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,14 @@
4343
'Programming Language :: Python :: 2',
4444
'Programming Language :: Python :: 2.7',
4545
'Programming Language :: Python :: 3',
46-
'Programming Language :: Python :: 3.4',
4746
'Programming Language :: Python :: 3.5',
4847
'Programming Language :: Python :: 3.6',
4948
'Programming Language :: Python :: 3.7',
5049
'Programming Language :: Python :: Implementation :: CPython',
5150
'Programming Language :: Python :: Implementation :: PyPy',
5251
'Topic :: Security :: Cryptography',
5352
],
54-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
53+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
5554
install_requires=[
5655
'pyasn1 >= 0.1.3',
5756
],

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,py34,py35,py36,p37,pypy
3+
envlist = py27,py35,py36,p37,pypy
44

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

0 commit comments

Comments
 (0)