Skip to content

Commit f21c897

Browse files
committed
Continuous Integration: python-version: ["3.9", "3.11", "3.13"]
Test on current versions of Python. * https://devguide.python.org/versions
1 parent a7c3ce2 commit f21c897

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/continuous_integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: ["3.9", "3.10", "3.11"]
29+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
3030

3131
steps:
3232
- uses: actions/checkout@v4

openhtf/util/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def _handle_test(self, test):
439439
if profile_filepath is None:
440440
profile_tempfile = None
441441
else:
442-
profile_tempfile = tempfile.NamedTemporaryFile()
442+
profile_tempfile = tempfile.NamedTemporaryFile(delete=False)
443443
# Mock the PlugManager to use ours instead, and execute the test.
444444
with mock.patch.object(
445445
plugs, 'PlugManager', new=lambda _, __: self.plug_manager):

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ python =
66
3.9: py39
77
3.10: py310
88
3.11: py311
9+
3.12: py312
10+
3.13: py313
911

1012
[testenv]
1113
deps =

0 commit comments

Comments
 (0)