summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Twomey <mick@twomeylee.name>2015-11-03 16:04:45 +0000
committerMichael Twomey <mick@twomeylee.name>2015-11-03 16:04:45 +0000
commit606f3e3d59053b9a1ea3c1e7cfbfdaf63c469c3d (patch)
tree5521ed54b400a61b85ebeeb06dd7533749f5b9d2
parent89c7c3d7f7a35e69ab4c7aea2871b572b9966dd3 (diff)
downloadpyiso8601-606f3e3d59053b9a1ea3c1e7cfbfdaf63c469c3d.tar.gz
Update README for release and add more pythons for testing0.1.11
-rw-r--r--.hgignore3
-rw-r--r--LICENSE2
-rw-r--r--README.rst6
-rw-r--r--tox.ini2
4 files changed, 9 insertions, 4 deletions
diff --git a/.hgignore b/.hgignore
index 2906798..c8071e0 100644
--- a/.hgignore
+++ b/.hgignore
@@ -5,4 +5,5 @@ dist
iso8601.egg-info
pyiso8601-venv
.tox
-_build \ No newline at end of file
+_build
+.cache
diff --git a/LICENSE b/LICENSE
index 37bbd6c..4eb54ea 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2007 - 2014 Michael Twomey
+Copyright (c) 2007 - 2015 Michael Twomey
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
diff --git a/README.rst b/README.rst
index 6ad8f49..f46f2a1 100644
--- a/README.rst
+++ b/README.rst
@@ -94,7 +94,9 @@ Tested against:
- Python 3.2
- Python 3.3
- Python 3.4
+- Python 3.5
- PyPy
+- PyPy 3
Python 3.0 and 3.1 are untested but should work (tests didn't run under them when last tried).
@@ -108,7 +110,9 @@ Changes
0.1.11
------
-* Add Python 3.4 to tox test config.
+* Remove logging (thanks to Quentin Pradet in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/6/remove-debug-logging/diff)
+* Add support for , as separator for fractional part (thanks to ecksun in https://bitbucket.org/micktwomey/pyiso8601/pull-requests/5/add-support-for-as-separator-for/diff)
+* Add Python 3.4 and 3.5 to tox test config.
* Add PyPy 3 to tox test config.
* Link to documentation at http://pyiso8601.readthedocs.org/
diff --git a/tox.ini b/tox.ini
index f3a8758..ac326f2 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py32,py33,py34,pypy,pypy3
+envlist = py26,py27,py32,py33,py34,py35,pypy,pypy3
[testenv]
deps=pytest>=2.4.2