summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjason kirtland <jek@discorporate.us>2010-03-28 09:50:08 -0700
committerjason kirtland <jek@discorporate.us>2010-03-28 09:50:08 -0700
commit4aa716648fbb8ba406dc26d93c78881d6e5dd7d6 (patch)
tree04cbd2f923ef7f8b388b411cfab89bf5b85c454b
parentca66102f54e250f0bc1c8b37901662ea444ea48a (diff)
downloadblinker-4aa716648fbb8ba406dc26d93c78881d6e5dd7d6.tar.gz
Tests pass on 3.0 and 3.1
-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',
],