diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21a824be..22328161 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, windows-latest, macos-latest] + os: [ubuntu-20.04, windows-latest, macos-13] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + include: + - os: macos-14 + python-version: "3.12" steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/tests/test_virtualenv.py b/tests/test_virtualenv.py index ec26de3b..abd6d437 100644 --- a/tests/test_virtualenv.py +++ b/tests/test_virtualenv.py @@ -196,16 +196,16 @@ def test_condaenv_create_with_params(make_conda): @has_conda def test_condaenv_create_interpreter(make_conda): - venv, dir_ = make_conda(interpreter="3.7") + venv, dir_ = make_conda(interpreter="3.8") venv.create() if IS_WINDOWS: assert dir_.join("python.exe").check() - assert dir_.join("python37.dll").check() - assert dir_.join("python37.pdb").check() - assert not dir_.join("python37.exe").check() + assert dir_.join("python38.dll").check() + assert dir_.join("python38.pdb").check() + assert not dir_.join("python38.exe").check() else: assert dir_.join("bin", "python").check() - assert dir_.join("bin", "python3.7").check() + assert dir_.join("bin", "python3.8").check() @has_conda