Skip to content

Commit

Permalink
drop 2.6 support, fix a broken image. (#219)
Browse files Browse the repository at this point in the history
* officially drop support for 2.6, clean up a broken image

* add changelog entry

* remove py26 testing from travis
  • Loading branch information
reaperhulk authored and alex committed Dec 19, 2016
1 parent f89d791 commit 42ef7df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,21 @@ group: edge
dist: trusty
sudo: required
env:
- TOXENV=py26 SODIUM_INSTALL=bundled CC=gcc
- TOXENV=py27 SODIUM_INSTALL=bundled CC=gcc
- TOXENV=py33 SODIUM_INSTALL=bundled CC=gcc
- TOXENV=py34 SODIUM_INSTALL=bundled CC=gcc
- TOXENV=py35 SODIUM_INSTALL=bundled CC=gcc
- TOXENV=pypy SODIUM_INSTALL=bundled CC=gcc
- TOXENV=py26 SODIUM_INSTALL=system CC=gcc
- TOXENV=py27 SODIUM_INSTALL=system CC=gcc
- TOXENV=py33 SODIUM_INSTALL=system CC=gcc
- TOXENV=py34 SODIUM_INSTALL=system CC=gcc
- TOXENV=py35 SODIUM_INSTALL=system CC=gcc
- TOXENV=pypy SODIUM_INSTALL=system CC=gcc
- TOXENV=py26 SODIUM_INSTALL=bundled CC=clang
- TOXENV=py27 SODIUM_INSTALL=bundled CC=clang
- TOXENV=py33 SODIUM_INSTALL=bundled CC=clang
- TOXENV=py34 SODIUM_INSTALL=bundled CC=clang
- TOXENV=py35 SODIUM_INSTALL=bundled CC=clang
- TOXENV=pypy SODIUM_INSTALL=bundled CC=clang
- TOXENV=py26 SODIUM_INSTALL=system CC=clang
- TOXENV=py27 SODIUM_INSTALL=system CC=clang
- TOXENV=py33 SODIUM_INSTALL=system CC=clang
- TOXENV=py34 SODIUM_INSTALL=system CC=clang
Expand Down
8 changes: 6 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PyNaCl
======

.. image:: https://pypip.in/version/PyNaCl/badge.svg?style=flat
.. image:: https://img.shields.io/pypi/v/pynacl.svg
:target: https://pypi.python.org/pypi/PyNaCl/
:alt: Latest Version

Expand All @@ -13,7 +13,7 @@ PyNaCl

PyNaCl is a Python binding to the `Networking and Cryptography library`_,
a crypto library with the stated goal of improving usability, security and
speed.
speed. It supports Python 2.7 and 3.3+ as well as PyPy 2.6+.

.. _Networking and Cryptography library: https://nacl.cr.yp.to/

Expand Down Expand Up @@ -64,6 +64,10 @@ Features
Changes
-------

* 1.1.0 (UNRELEASED):

* Dropped support for Python 2.6.

* 1.0.1:

* Fix an issue with absolute paths that prevented the creation of wheels.
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ def run(self):
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
Expand Down

0 comments on commit 42ef7df

Please sign in to comment.