-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ env: | |
|
||
jobs: | ||
base-tests-mac: | ||
runs-on: macos-11 | ||
runs-on: macos-12 | ||
strategy: | ||
matrix: | ||
tests: | ||
|
@@ -29,12 +29,10 @@ jobs: | |
uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
- name: Setup Python | ||
run: | | ||
brew update | ||
brew install [email protected] | ||
brew unlink [email protected] | ||
brew link --force --overwrite [email protected] | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.9" | ||
- name: Setup SUMO | ||
run: | | ||
brew install xquartz | ||
|
@@ -43,7 +41,7 @@ jobs: | |
brew install geos | ||
- name: Install dependencies | ||
run: | | ||
python3.8 -m venv ${{env.venv_dir}} | ||
python3.9 -m venv ${{env.venv_dir}} | ||
. ${{env.venv_dir}}/bin/activate | ||
pip install --upgrade pip | ||
pip install wheel==0.38.4 | ||
|