summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Twomey <mick@twomeylee.name>2017-07-27 23:17:43 +0100
committerMichael Twomey <mick@twomeylee.name>2017-07-27 23:17:43 +0100
commit234c641d7791ff116335272461213649f39bd842 (patch)
tree15d7fbab8e285bffa97dd44d1a64e94c5d09a3d8
parent1db49632d792650aded52d2013599306506261fd (diff)
downloadpyiso8601-234c641d7791ff116335272461213649f39bd842.tar.gz
Remove py32 from tests and broken image link in docsHEADmaster
-rw-r--r--README.rst10
-rw-r--r--dev-requirements.txt1
-rw-r--r--docs/index.rst2
-rw-r--r--tox.ini2
4 files changed, 9 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index a9f1761..8eecce5 100644
--- a/README.rst
+++ b/README.rst
@@ -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:
@@ -91,7 +91,6 @@ Tested against:
- Python 2.6
- Python 2.7
-- Python 3.2
- Python 3.3
- Python 3.4
- Python 3.5
@@ -99,7 +98,7 @@ Tested against:
- 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).
@@ -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
------
diff --git a/dev-requirements.txt b/dev-requirements.txt
index 29a220a..faff13f 100644
--- a/dev-requirements.txt
+++ b/dev-requirements.txt
@@ -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 \ No newline at end of file
diff --git a/docs/index.rst b/docs/index.rst
index e28f2dc..56f2583 100644
--- a/docs/index.rst
+++ b/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
diff --git a/tox.ini b/tox.ini
index 90985f7..f171061 100644
--- a/tox.ini
+++ b/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