Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit e348056

Browse files
committed
Dropped Python 3.2 (pip dropped it; can’t test it)
1 parent 5042219 commit e348056

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

README.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ See the original project_, original Python module_, original spec_, and `current
2020
Requirements
2121
------------
2222

23-
* Python 2.7, 3.2, 3.3, 3.4
24-
* pycryptodome_
23+
* Python 2.7, 3.3, 3.4, 3.5, 3.6
24+
* PyCrypto_
2525

2626
Optional:
2727

@@ -30,6 +30,12 @@ Optional:
3030
.. _pycryptodome: https://pypi.python.org/pypi/pycryptodome
3131
.. _requests: https://pypi.python.org/pypi/requests
3232

33+
For testing:
34+
35+
* tox
36+
* pyenv (optional, handy way to access multiple versions)
37+
$ for VERS in 2.7.14 3.3.7 3.4.8 3.5.5 3.6.4; do pyenv install -s $VERS; done
38+
3339
Usage
3440
-----
3541

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
"Operating System :: OS Independent",
2929
"Programming Language :: Python",
3030
"Programming Language :: Python :: 2.7",
31-
"Programming Language :: Python :: 3.2",
3231
"Programming Language :: Python :: 3.3",
3332
"Programming Language :: Python :: 3.4",
33+
"Programming Language :: Python :: 3.5",
34+
"Programming Language :: Python :: 3.6",
3435
"Topic :: Internet :: WWW/HTTP",
3536
"Topic :: Software Development :: Libraries :: Python Modules",
3637
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py32, py33, py34
2+
envlist = py27, py33, py34, py35, py36
33

44
[testenv]
55
commands = python setup.py test

0 commit comments

Comments
 (0)