Skip to content

Support MacOS 14 github runner (which is now default) #12617

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-12]
os: [ubuntu-latest, macos-latest]
python:
- "3.8"
- "3.9"
Expand All @@ -129,8 +129,10 @@ jobs:
sudo apt-get install bzr

- name: Install MacOS dependencies
if: matrix.os == 'macos-12'
run: brew install breezy
if: matrix.os == 'macos-latest'
run: |
brew install breezy
brew install subversion

- run: pip install nox

Expand Down
1 change: 1 addition & 0 deletions news/12617.trivial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Install subversion for macos-latest CI Runner so macos-14 tests do not fail
3 changes: 1 addition & 2 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ pytest-rerunfailures
pytest-xdist
scripttest
setuptools
virtualenv < 20.0 ; python_version < '3.10'
virtualenv >= 20.0 ; python_version >= '3.10'
virtualenv
werkzeug
wheel
tomli-w
Expand Down
Loading