Skip to content

Commit

Permalink
Remove py32 from tests and broken image link in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
micktwomey committed Jul 27, 2017
1 parent 2dace6a commit cec9ac7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.rst
Expand Up @@ -77,7 +77,7 @@ Testing
1. pip install -r dev-requirements.txt
2. tox

Note that you need all the pythons installed to perform a tox run (see below). Homebrew helps a lot on the mac, however you wind up having to add cellars to your PATH or symlinking the pythonX.Y executables.
Note that you need all the pythons installed to perform a tox run (see below). pyenv helps hugely, use pyenv install for the versions you need then use 'pyenv local version ...' to link them in (the tox-pyenv plugin will pick them up).

Alternatively, to test only with your current python:

Expand All @@ -91,15 +91,14 @@ Tested against:

- Python 2.6
- Python 2.7
- Python 3.2
- Python 3.3
- Python 3.4
- Python 3.5
- Python 3.6
- PyPy
- PyPy 3

Python 3.0 and 3.1 are untested but should work (tests didn't run under them when last tried).
Python 3.0, 3.1 and 3.2 are untested but should work (tests didn't run under them when last tried).

Jython is untested but should work (tests failed to run).

Expand All @@ -108,6 +107,11 @@ Python 2.5 is not supported (too old for the tests for the most part). It could
Changes
=======

Unreleased
----------

* Remove python 3.2 from tests

0.1.12
------

Expand Down
1 change: 1 addition & 0 deletions dev-requirements.txt
Expand Up @@ -3,4 +3,5 @@ pytest>=2.5.2
Sphinx>=1.2.1
tox-pyenv>=1.0.3
tox>=1.7.0
twine>=1.9.1
wheel>=0.22.0
2 changes: 0 additions & 2 deletions docs/index.rst
@@ -1,8 +1,6 @@
pyiso8601: ISO 8601 Parsing for Python
======================================

.. image:: https://pypip.in/d/iso8601/badge.png

This module parses the most common forms of ISO 8601 date strings (e.g. 2007-01-14T20:34:22+00:00) into datetime objects.

>>> import iso8601
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,py34,py35,py36,pypy,pypy3
envlist = py26,py27,py33,py34,py35,py36,pypy,pypy3

[testenv]
deps=pytest>=2.4.2
Expand Down

0 comments on commit cec9ac7

Please sign in to comment.