summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/source/index.rst5
-rw-r--r--setup.py3
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 8a594bc..d76e8ab 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -18,10 +18,9 @@ The core of Blinker is quite small but provides powerful features:
Requirements
------------
-Python 2.4 or later. No other modules are required.
+Python 2.4 or later; Python 3.0 or later.
-As of Blinker 0.8, Python 3.1 passes all tests except for weakly
-binding to instance methods.
+No other modules are required.
License
diff --git a/setup.py b/setup.py
index 009ba66..f41209a 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,8 @@ setup(name="blinker",
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
- # 'Programming Language :: Python :: 3.1', # _saferef fails :(
+ 'Programming Language :: Python :: 3.0',
+ 'Programming Language :: Python :: 3.1',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],