Skip to content

Commit

Permalink
Remove sphinx version pin (#2134)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Balandat authored and facebook-github-bot committed Dec 3, 2023
1 parent 504ccea commit 21cdb44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def read_deps_from_file(filname):
# Read in pinned versions of the formatting tools
FMT_REQUIRES += read_deps_from_file("requirements-fmt.txt")
# Dev is test + formatting + docs generation
DEV_REQUIRES = TEST_REQUIRES + FMT_REQUIRES + ["sphinx<=7.1.2"]
DEV_REQUIRES = TEST_REQUIRES + FMT_REQUIRES + ["sphinx"]

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

0 comments on commit 21cdb44

Please sign in to comment.