summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Twomey <michael.twomey@fieldaware.com>2013-10-17 14:55:47 +0100
committerMichael Twomey <michael.twomey@fieldaware.com>2013-10-17 14:55:47 +0100
commit3c8b886cce706f480462e1e4e45b71e0269ef556 (patch)
treeb05d72a4c1ff5499abf19800c4abb42a5cb8c957
parent10c7faa9be66b06586d187905735013d2a22ecd5 (diff)
downloadpyiso8601-3c8b886cce706f480462e1e4e45b71e0269ef556.tar.gz
Update README and add pypy to tox test matrix
-rw-r--r--README.rst29
-rw-r--r--tox.ini2
2 files changed, 28 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 46baaeb..da5613a 100644
--- a/README.rst
+++ b/README.rst
@@ -14,8 +14,8 @@ If you want more full featured parsing look at:
- http://labix.org/python-dateutil - python-dateutil
-Home
-====
+Homepage
+========
* https://bitbucket.org/micktwomey/pyiso8601/
@@ -34,6 +34,30 @@ 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.
+
+Alternatively, to test only with your current python:
+
+1. pip install -r dev-requirements.txt
+2. py.test --verbose iso8601
+
+Supported Python Versions
+=========================
+
+Tested against:
+
+- Python 2.6
+- Python 2.7
+- Python 3.2
+- Python 3.3
+- PyPy
+
+Python 3.0 and 3.1 are untested but should work.
+
+Jython is untested but should work.
+
+Python 2.5 is not supported (too old).
+
Changes
=======
@@ -46,6 +70,7 @@ Changes
* Switched to py.test and tox for testing
* Make seconds optional in date format ("1997-07-16T19:20+01:00" now valid). https://bitbucket.org/micktwomey/pyiso8601/pull-request/1/make-the-inclusion-of-seconds-optional-in/diff (thanks to Chris Down)
* Correctly raise ParseError for more invalid inputs (https://bitbucket.org/micktwomey/pyiso8601/issue/1/raise-parseerror-for-invalid-input) (thanks to manish.tomar)
+* Support more variations of ISO 8601 dates, times and time zone specs.
0.1.4
-----
diff --git a/tox.ini b/tox.ini
index 766b53d..d3fce9f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py32,py33
+envlist = py26,py27,py32,py33,pypy
[testenv]
deps=pytest>=2.4.2