diff --git a/README.rst b/README.rst index 02852c3..29afa2f 100644 --- a/README.rst +++ b/README.rst @@ -12,7 +12,7 @@ Python library for reading IMAP mailboxes and converting email content to machin Requirements ------------ -Python (3.2, 3.3, 3.4, 3.5, 3.6) +Python (3.3, 3.4, 3.5, 3.6) Installation @@ -114,4 +114,25 @@ Usage } +Changelog +--------- + `Changelog `_ + + +Running the tests +----------------- + +You can run the imbox tests with ``tox``. + +Requirements: + * the supported python versions + * ``tox``. Tox is packaged in Debian and derivatives distributions. + +On Ubuntu, you can install several python versions with: + +.. code:: sh + + sudo add-apt-repository ppa:deadsnakes/ppa + sudo apt update + sudo apt install python3.X diff --git a/setup.py b/setup.py index 6812fe2..53e68cd 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,6 @@ setup( zip_safe=False, classifiers=( 'Programming Language :: Python', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..2c81cf1 --- /dev/null +++ b/tox.ini @@ -0,0 +1,6 @@ +[tox] +envlist = py33,py34,py35,py36 + +[testenv] +deps=nose +commands=nosetests -v