Skip to content

Commit

Permalink
Run brew upgrade before brew install mercurial
Browse files Browse the repository at this point in the history
So that brew uses the recipe for Mercurial 6.6, which depends on Python 3.12
(unlike the previous recipe, which depends on 3.11) and thus does not conflict
with 2to3 from Python 3.12.
  • Loading branch information
jwodder committed Nov 23, 2023
1 parent cc6ddc0 commit 8177526
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
- name: Install Mercurial
if: startsWith(matrix.os, 'macos-')
run: brew install mercurial
run: |
brew upgrade
brew install mercurial
- name: Run tests with coverage
if: startsWith(matrix.toxenv, 'py')
Expand Down

0 comments on commit 8177526

Please sign in to comment.