Skip to content

Commit

Permalink
disallow latest sphinx release because it doesn't work with sphinx_rt…
Browse files Browse the repository at this point in the history
…d_theme (#1147)

* disallow latest sphinx release because it doesn't work with sphinx_rtd_theme

* Update test_ssl.py

* black
  • Loading branch information
alex authored Sep 25, 2022
1 parent f0ed288 commit ad50a44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@ def find_meta(meta):
],
extras_require={
"test": ["flaky", "pretend", "pytest>=3.0.1"],
"docs": ["sphinx", "sphinx_rtd_theme"],
"docs": ["sphinx!=5.2.0,!=5.2.0.post0", "sphinx_rtd_theme"],
},
)
2 changes: 2 additions & 0 deletions tests/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ def socket_pair():
client.setblocking(True)
server = port.accept()[0]

port.close()

# Let's pass some unencrypted data to make sure our socket connection is
# fine. Just one byte, so we don't have to worry about buffers getting
# filled up or fragmentation.
Expand Down

0 comments on commit ad50a44

Please sign in to comment.