diff --git a/README.md b/README.md
index 1ec5c08..ed694a3 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
-**Boltons** is a set of over 220 BSD-licensed, pure-Python utilities
+**Boltons** is a set of over 230 BSD-licensed, pure-Python utilities
in the same spirit as — and yet conspicuously missing from —
[the standard library][stdlib], including:
@@ -24,8 +24,8 @@ in the same spirit as — and yet conspicuously missing from —
**[Full and extensive docs are available on Read The Docs.][rtd]** See
what's new [by checking the CHANGELOG][changelog].
-Boltons is tested against Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6,
-3.7-dev (aka _nightly_), and PyPy.
+Boltons is tested against Python 2.6, 2.7, 3.4, 3.5, 3.6, and 3.7, as well as CPython
+_nightly_ and PyPy/PyPy3.
[stdlib]: https://docs.python.org/2.7/library/index.html
[rtd]: https://boltons.readthedocs.org/en/latest/
diff --git a/setup.py b/setup.py
index 283e7a5..484179d 100644
--- a/setup.py
+++ b/setup.py
@@ -45,10 +45,10 @@ setup(name='boltons',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', ]
)