diff --git a/README.rst b/README.rst
index 686507ea34269b7be586c8f3c3d6abdf6795cf59..8d509f5473b2b5f62d7eef7ceb8be3ff27c8537a 100644
--- a/README.rst
+++ b/README.rst
@@ -49,7 +49,7 @@ or::
 
     $ easy_install kgb
 
-kgb supports Python 2.5 through 2.7 and 3.4 through 3.8.
+kgb supports Python 2.7 and 3.6 through 3.10.
 
 
 Spying for fun and profit
diff --git a/dev-requirements.txt b/dev-requirements.txt
index 7a71cd52c739bcc171fe3e36d5c7dc9c583f4954..ceb6fabab4c41a1ace1f874efee57f50aa4180f5 100644
--- a/dev-requirements.txt
+++ b/dev-requirements.txt
@@ -1,2 +1,3 @@
-nose
+nose; python_version < '3'
+nose3; python_version >= '3'
 unittest2; python_version < '2.7'
diff --git a/kgb/__init__.py b/kgb/__init__.py
index dafa5d70ed693923ad9588224a6906eaabbf4c06..ced63a0108ba69cd814467960d3587514b7dadd8 100644
--- a/kgb/__init__.py
+++ b/kgb/__init__.py
@@ -16,7 +16,7 @@ from kgb.ops import (SpyOpMatchAny,
 #
 #   (Major, Minor, Micro, alpha/beta/rc/final, Release Number, Released)
 #
-VERSION = (6, 1, 0, 'final', 0, True)
+VERSION = (7, 0, 0, 'alpha', 0, False)
 
 
 def get_version_string():
diff --git a/setup.py b/setup.py
index 0eeabaac7f1c1e12bdd7ebd1789c1d5518053eed..e50fcda7e8c526bde569e8eb5658adaf21010486 100755
--- a/setup.py
+++ b/setup.py
@@ -57,14 +57,13 @@ setup(name=PACKAGE_NAME,
           'Operating System :: OS Independent',
           'Programming Language :: Python',
           'Programming Language :: Python :: 2',
-          'Programming Language :: Python :: 2.6',
           'Programming Language :: Python :: 2.7',
           'Programming Language :: Python :: 3',
-          'Programming Language :: Python :: 3.4',
-          'Programming Language :: Python :: 3.5',
           'Programming Language :: Python :: 3.6',
           'Programming Language :: Python :: 3.7',
           'Programming Language :: Python :: 3.8',
+          'Programming Language :: Python :: 3.9',
+          'Programming Language :: Python :: 3.10',
           'Topic :: Software Development',
           'Topic :: Software Development :: Libraries :: Python Modules',
           'Topic :: Software Development :: Testing',
