summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Twomey <michael.twomey@fieldaware.com>2014-10-02 12:01:03 +0100
committerMichael Twomey <michael.twomey@fieldaware.com>2014-10-02 12:01:03 +0100
commit6f1c6fc163fcfb40b707e2b8abd7a663a3503b38 (patch)
treea0640f1a7d699de7b6401c8e32014de31cccdb47
parent77026b6205366cf63abbc19945c92879676cd387 (diff)
downloadpyiso8601-6f1c6fc163fcfb40b707e2b8abd7a663a3503b38.tar.gz
Add python 3.4 to tox tests and update doc links
-rw-r--r--README.rst13
-rw-r--r--tox.ini2
2 files changed, 12 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 90cb809..420f250 100644
--- a/README.rst
+++ b/README.rst
@@ -39,7 +39,7 @@ Times
Time Zones
----------
-- Nothing uses the default timezone given (UTC).
+- Nothing, will use the default timezone given (which in turn defaults to UTC).
- Z (UTC)
- +/-hh:mm
- +/-hhmm
@@ -57,7 +57,8 @@ Known differences from the ISO 8601 spec:
Homepage
========
-- https://bitbucket.org/micktwomey/pyiso8601/
+- Documentation: http://pyiso8601.readthedocs.org/
+- Source: https://bitbucket.org/micktwomey/pyiso8601/
This was originally hosted at https://code.google.com/p/pyiso8601/
@@ -92,6 +93,7 @@ Tested against:
- Python 2.7
- Python 3.2
- Python 3.3
+- Python 3.4
- PyPy
Python 3.0 and 3.1 are untested but should work (tests didn't run under them when last tried).
@@ -103,6 +105,13 @@ Python 2.5 is not supported (too old for the tests for the most part). It could
Changes
=======
+0.1.11
+------
+
+* Add Python 3.4 to tox test config.
+* Link to documentation at http://pyiso8601.readthedocs.org/
+
+
0.1.10
------
diff --git a/tox.ini b/tox.ini
index 4c2697d..5ecbc1f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py32,py33,pypy
+envlist = py26,py27,py32,py33,py34,pypy
[testenv]
deps=pytest>=2.4.2