Skip to content

Commit

Permalink
Merge pull request #225 from square/janek/work-around-sphinx-bug
Browse files Browse the repository at this point in the history
Disallow Sphinx 3.2.0
  • Loading branch information
jqmp committed Aug 12, 2020
2 parents 267eaa4 + 4ec91b5 commit 2bba73e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bionic/deps/extras.py
Expand Up @@ -43,7 +43,7 @@ def combine(*dep_lists):
"flake8",
"flake8-print",
"flake8-fixme",
"sphinx",
"sphinx!=3.2.0",
"sphinx_rtd_theme",
"sphinx-autobuild",
"nbsphinx",
Expand Down
2 changes: 1 addition & 1 deletion bionic/deps/optdep.py
Expand Up @@ -13,7 +13,7 @@ def first_token_from_package_desc(desc):
if first_mismatch is None:
return desc

if desc[first_mismatch.start()] not in " <>=":
if desc[first_mismatch.start()] not in " <>!=":
raise AssertionError(
oneline(
f"""
Expand Down

0 comments on commit 2bba73e

Please sign in to comment.