Merge remote-tracking branch 'origin/master' into 3731.make-tox-news-macos-work

This commit is contained in:
Sajith Sasidharan 2021-07-05 10:40:08 -04:00
commit 1ea345a6ac
No known key found for this signature in database
GPG Key ID: 0C6DA6A29D5F02BA
2 changed files with 13 additions and 2 deletions

View File

@ -189,9 +189,20 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: sudo apt install tor
- name: Install Tor [macOS]
if: matrix.os == 'macos-latest'
- name: Install Tor [macOS, ${{ matrix.python-version }} ]
if: ${{ ( matrix.os == 'macos-latest' ) && ( matrix.python-version != '2.7' ) }}
run: brew install tor
# TODO: See https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3744.
# We have to use an older version of Tor for running integration
# tests on macOS using Python 2.7. We should stop doing this
# when Python 2.7 is dropped.
- name: Install Tor [macOS, ${{ matrix.python-version }} ]
if: ${{ ( matrix.os == 'macos-latest' ) && ( matrix.python-version == '2.7' ) }}
run: |
brew extract --version 0.4.5.8 tor homebrew/cask
brew install tor@0.4.5.8
brew link --overwrite tor@0.4.5.8
- name: Install Tor [Windows]
if: matrix.os == 'windows-latest'

0
newsfragments/3744.minor Normal file
View File