Skip to content

Commit

Permalink
Skip Python 3.6 test on macOS arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Aug 17, 2022
1 parent 4cfe1a3 commit 4bc6bd3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_dependency_versions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import platform
import re
import textwrap

Expand Down Expand Up @@ -60,6 +61,8 @@ def test_pinned_versions(tmp_path, python_version, build_frontend_env):
build_environment = {}

if python_version == "3.6":
if utils.platform == "macos" and platform.machine() == "arm64":
pytest.skip("macOS arm64 does not support Python 3.6")
constraint_filename = "constraints-python36.txt"
build_pattern = "[cp]p36-*"
elif python_version == "3.7":
Expand Down

0 comments on commit 4bc6bd3

Please # to comment.