python-breathe/0001-Cancel-sphinx-version-limit.patch
bzg1107 c76bf9cca2 fix build error
(cherry picked from commit 2a7991c372b93d7206bc940cbd880e9748db65ea)
2022-02-11 10:47:30 +08:00

26 lines
746 B
Diff

From 8b42ef5a9db2d816c9e749237b9681d1aba0bea2 Mon Sep 17 00:00:00 2001
From: bzg1107 <preloyalwhite@163.com>
Date: Tue, 4 Jan 2022 22:43:54 +0800
Subject: [PATCH] Cancel sphinx version limit
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 3f39730..6acc10a 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ Breathe is an extension to reStructuredText and Sphinx to be able to read and
render `Doxygen <http://www.doxygen.org>`__ xml output.
'''
-requires = ['Sphinx>=3.0,<3.6', 'docutils>=0.12', 'six>=1.9']
+requires = ['Sphinx>=3.0', 'docutils>=0.12', 'six>=1.9']
if sys.version_info < (3, 5):
print('ERROR: Sphinx requires at least Python 3.5 to run.')
--
2.30.0