# HG changeset patch # User Andrew Shadura # Date 2017-01-14 20:56:48 # Node ID d1d9d249846baeb8c94f6264217fa5f9f56370da # Parent d0f6bd6190c80c299cc6c699f2cda973633cbcae setup: don't constrain docutils version Docutils maintains stable interface, and seems to be developed at slow enough pace, so we can drop the upped version restriction. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ requirements = [ "babel>=0.9.6,<=1.3", "python-dateutil>=1.5.0,<2.0.0", "markdown==2.2.1", - "docutils>=0.8.1,<=0.11", + "docutils>=0.8.1", "URLObject==2.3.4", "Routes==1.13", "dulwich>=0.14.1",