WIP: Drop Python 2 support
diff --git a/README.rst b/README.rst
index ff0a117..a75c288 100644
--- a/README.rst
+++ b/README.rst
@@ -186,8 +186,6 @@
    :stub-columns: 1
 
    * -
-     - Py2.6
-     - Py2.7
      - Py3.4
      - Py3.5
      - Py3.6
@@ -205,8 +203,6 @@
      - yes
      - yes
      - yes
-     - yes
-     - yes
    * - nose2
      - yes
      - yes
@@ -216,11 +212,7 @@
      - yes
      - yes
      - yes
-     - yes
-     - yes
    * - py.test 2
-     - yes
-     - yes
      - no*
      - no*
      - no*
@@ -238,8 +230,6 @@
      - yes
      - yes
      - yes
-     - yes
-     - yes
    * - py.test 4
      - no**
      - no**
@@ -249,8 +239,6 @@
      - no**
      - no**
      - no**
-     - no**
-     - no**
    * - py.test fixtures
      - no†
      - no†
@@ -260,8 +248,6 @@
      - no†
      - no†
      - no†
-     - no†
-     - no†
    * - | unittest
        | (``@parameterized.expand``)
      - yes
@@ -272,8 +258,6 @@
      - yes
      - yes
      - yes
-     - yes
-     - yes
    * - | unittest2
        | (``@parameterized.expand``)
      - yes
@@ -284,8 +268,6 @@
      - yes
      - yes
      - yes
-     - yes
-     - yes
 
 \*: py.test 2 does `does not appear to work (#71)`__ under Python 3. Please comment on the related issues if you are affected.
 
@@ -649,9 +631,11 @@
 FAQ
 ---
 
-What happened to ``nose-parameterized``?
-    Originally only nose was supported. But now everything is supported, and it
-    only made sense to change the name!
+What happened to Python 2.X support?
+    As of version 0.9.0, ``parameterized`` no longer supports Python 2.X.
+    Previous versions of ``parameterized`` - 0.8.1 being the latest - will
+    continue to work on Python 2.X, but will not receive any new features or bug
+    fixes.
 
 What do you mean when you say "nose is best supported"?
     There are small caveates with ``py.test`` and ``unittest``: ``py.test``
@@ -668,3 +652,7 @@
     You've likely installed the ``parametrized`` (note the missing *e*)
     package. Use ``parameterized`` (with the *e*) instead and you'll be all
     set.
+
+What happened to ``nose-parameterized``?
+    Originally only nose was supported. But now everything is supported, and it
+    only made sense to change the name!
diff --git a/parameterized/__init__.py b/parameterized/__init__.py
index 25ff0f1..9dae02d 100644
--- a/parameterized/__init__.py
+++ b/parameterized/__init__.py
@@ -1,3 +1,3 @@
 from .parameterized import parameterized, param, parameterized_class
 
-__version__ = "0.8.1"
+__version__ = "0.9.0"