Skip to content

Commit a699d7c

Browse files
committed
Run github workflow tests on Python 3.11
1 parent 8eedbb9 commit a699d7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Python
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.x
31+
python-version: 3.11
3232
- run: |
3333
python -m pip install -q cryptography
3434
make test

tests/channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def write_thread():
415415
nonlocal count, write_finished
416416
count = writer.write(data.encode("utf-8"))
417417
writer.flush()
418-
# writer.close() # TODO: Temporary workaround for https://github.com/python/cpython/issues/138720
418+
writer.close() # TODO: Workaround for https://github.com/python/cpython/issues/138720
419419
write_finished = True
420420
threading.Thread(target=write_thread, name="Write Thread", daemon=True).start()
421421

0 commit comments

Comments
 (0)