mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
remove python 3.2 from every other place I could find
This commit is contained in:
parent
3621d70403
commit
0958641277
5 changed files with 3 additions and 9 deletions
|
|
@ -23,11 +23,6 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
|
|||
curl -O https://bootstrap.pypa.io/get-pip.py
|
||||
python get-pip.py --user
|
||||
;;
|
||||
py32)
|
||||
brew upgrade pyenv
|
||||
pyenv install 3.2.6
|
||||
pyenv global 3.2.6
|
||||
;;
|
||||
py33)
|
||||
brew upgrade pyenv
|
||||
pyenv install 3.3.6
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ 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.2+, and PyPy.
|
||||
standard library". It supports Python 2.6-2.7, Python 3.3+, and PyPy.
|
||||
|
||||
``cryptography`` includes both high level recipes, and low level interfaces to
|
||||
common cryptographic algorithms such as symmetric ciphers, message digests and
|
||||
|
|
|
|||
|
|
@ -44,7 +44,6 @@ each supported Python version and run the tests. For example:
|
|||
ERROR: py26: InterpreterNotFound: python2.6
|
||||
py27: commands succeeded
|
||||
ERROR: pypy: InterpreterNotFound: pypy
|
||||
ERROR: py32: InterpreterNotFound: python3.2
|
||||
py33: commands succeeded
|
||||
docs: commands succeeded
|
||||
pep8: commands succeeded
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ You can install ``cryptography`` with ``pip``:
|
|||
Supported platforms
|
||||
-------------------
|
||||
|
||||
Currently we test ``cryptography`` on Python 2.6, 2.7, 3.2, 3.3, 3.4 and PyPy
|
||||
Currently we test ``cryptography`` on Python 2.6, 2.7, 3.3, 3.4 and PyPy
|
||||
on these operating systems.
|
||||
|
||||
* x86-64 CentOS 7.x, 6.4 and CentOS 5.x
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py26,py27,pypy,py32,py33,py34,docs,pep8,py3pep8
|
||||
envlist = py26,py27,pypy,py33,py34,docs,pep8,py3pep8
|
||||
|
||||
[testenv]
|
||||
# If you add a new dep here you probably need to add it in setup.py as well
|
||||
|
|
|
|||
Loading…
Reference in a new issue