Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ matrix:
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
Expand Down Expand Up @@ -54,10 +52,6 @@ matrix:
# see: https://docs.travis-ci.com/user/osx-ci-environment/
osx_image: xcode8.3
env: TOXENV=py27 CRYPTOGRAPHY_SUPPRESS_LINK_FLAGS=1
- language: generic
os: osx
osx_image: xcode8.3
env: TOXENV=py33 CRYPTOGRAPHY_SUPPRESS_LINK_FLAGS=1
- language: generic
os: osx
osx_image: xcode8.3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Changelog

.. note:: This version is not yet released and is under active development.

* **BACKWARDS INCOMPATIBLE:** Support for Python 3.3 has been dropped.
* Deprecated the use of ``signer`` on
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`,
Expand Down
5 changes: 2 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ if (env.BRANCH_NAME == "master") {
def configs = [
[
label: 'windows',
toxenvs: ['py26', 'py27', 'py33', 'py34', 'py35', 'py36'],
toxenvs: ['py26', 'py27', 'py34', 'py35', 'py36'],
],
[
label: 'windows64',
toxenvs: ['py26', 'py27', 'py33', 'py34', 'py35', 'py36'],
toxenvs: ['py26', 'py27', 'py34', 'py35', 'py36'],
],
[
label: 'freebsd11',
Expand Down Expand Up @@ -199,7 +199,6 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
def pythonPath = [
py26: "C:\\Python26\\python.exe",
py27: "C:\\Python27\\python.exe",
py33: "C:\\Python33\\python.exe",
py34: "C:\\Python34\\python.exe",
py35: "C:\\Python35\\python.exe",
py36: "C:\\Python36\\python.exe"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pyca/cryptography

``cryptography`` is a package which provides cryptographic recipes and
primitives to Python developers. Our goal is for it to be your "cryptographic
standard library". It supports Python 2.6-2.7, Python 3.3+, and PyPy 5.3+.
standard library". It supports Python 2.6-2.7, Python 3.4+, and PyPy 5.3+.

``cryptography`` includes both high level recipes and low level interfaces to
common cryptographic algorithms such as symmetric ciphers, message digests, and
Expand Down
4 changes: 1 addition & 3 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can install ``cryptography`` with ``pip``:
Supported platforms
-------------------

Currently we test ``cryptography`` on Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, and
Currently we test ``cryptography`` on Python 2.6, 2.7, 3.4, 3.5, 3.6, and
PyPy 5.3+ on these operating systems.

* x86-64 CentOS 7.x
Expand All @@ -24,8 +24,6 @@ PyPy 5.3+ on these operating systems.
Python 2.6 is no longer supported by the Python core team. A future version
of cryptography will drop support for this version.

Python 3.3 support will be removed in the next cryptography release.

We test compiling with ``clang`` as well as ``gcc`` and use the following
OpenSSL releases:

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ def run_tests(self):
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
Expand Down
6 changes: 0 additions & 6 deletions src/cryptography/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,3 @@
"support for Python 2.6",
DeprecationWarning
)
if sys.version_info[:2] == (3, 3):
warnings.warn(
"Python 3.3 support will be dropped in the next release of"
"cryptography. Please upgrade your Python.",
DeprecationWarning,
)