Skip to content

Commit

Permalink
Make the tests pass with Sphinx 7.3.x (#245)
Browse files Browse the repository at this point in the history
Commit sphinx-doc/sphinx@6471027d1936f0a0 was
included in Sphinx 7.4, not 7.3.
  • Loading branch information
mitya57 authored Aug 5, 2024
1 parent be376e2 commit 2c7cd9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_default_settings(app, status, warning):
else:
cssclass = ""

if sphinx.version_info < (7, 3):
if sphinx.version_info < (7, 4):
alt = "Logo"
else:
alt = "Logo of Python"
Expand Down Expand Up @@ -144,7 +144,7 @@ def test_urls_prefix_setting(app, status, warning):
else:
cssclass = ""

if sphinx.version_info < (7, 3):
if sphinx.version_info < (7, 4):
alt = "Logo"
else:
alt = "Logo of Python"
Expand Down Expand Up @@ -187,7 +187,7 @@ def test_urls_prefix_setting_none(app, status, warning):
else:
cssclass = ""

if sphinx.version_info < (7, 3):
if sphinx.version_info < (7, 4):
alt = "Logo"
else:
alt = "Logo of Python"
Expand Down

0 comments on commit 2c7cd9a

Please sign in to comment.