Skip to content

Commit 21cdb44

Browse files
Balandatfacebook-github-bot
authored andcommitted
Remove sphinx version pin (#2134)
Summary: Sphinx 7.2.0 caused issues in the past (see #1990), but things appear to work just fine on the latest sphinx version (7.2.6) Pull Request resolved: #2134 Reviewed By: esantorella Differential Revision: D51785066 Pulled By: Balandat fbshipit-source-id: 794bae6ae374130118e7b07d72d73f8d831e4ede
1 parent 504ccea commit 21cdb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def read_deps_from_file(filname):
6868
# Read in pinned versions of the formatting tools
6969
FMT_REQUIRES += read_deps_from_file("requirements-fmt.txt")
7070
# Dev is test + formatting + docs generation
71-
DEV_REQUIRES = TEST_REQUIRES + FMT_REQUIRES + ["sphinx<=7.1.2"]
71+
DEV_REQUIRES = TEST_REQUIRES + FMT_REQUIRES + ["sphinx"]
7272

7373
# read in README.md as the long description
7474
with open(os.path.join(root_dir, "README.md"), "r") as fh:

0 commit comments

Comments
 (0)