Skip to content

Commit

Permalink
Update to available python version for macos runners (arm64)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hind-M committed Aug 14, 2024
1 parent ee33275 commit b289ba9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mamba/tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ def test_env_update(shell_type, tmpdir):
def test_track_features(shell_type):
with Environment(shell_type) as env:
# should install CPython since PyPy has track features
version = "3.7.9"
# macos runners switched to arm64, where available python versions are at least "3.8"
# "3.8.12" seems to be a stable one
version = "3.8.12"
env.mamba(
f'install -q -y "python={version}" --strict-channel-priority -c conda-forge'
)
Expand Down

0 comments on commit b289ba9

Please sign in to comment.