Skip to content

Commit c436fa7

Browse files
Relax Arch Python version guardrail
1 parent 76fd446 commit c436fa7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.builds/archlinux-py313.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,11 @@ environment:
3535
REQUIREMENTS: release
3636
# TODO: ETESYNC_TESTS
3737
tasks:
38-
- check-python:
39-
python --version | grep 'Python 3.13'
38+
- check-python: |
39+
python - <<'PY'
40+
import sys
41+
assert (3, 13) <= sys.version_info[:2] <= (3, 14), sys.version
42+
PY
4043
- docker: |
4144
sudo systemctl start docker
4245
- setup: |

0 commit comments

Comments
 (0)