* fix(ci): CircleCI CircleCI does not support Intel macOS runners anymore. c.f. https://discuss.circleci.com/t/macos-intel-support-deprecation-in-january-2024/48718 * fix(ci): Azure Pipelines * fix(ci): GitLab
15 lines
328 B
Bash
15 lines
328 B
Bash
#!/usr/bin/env bash
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
if [ "$(uname -s)" == "Darwin" ]; then
|
|
sudo softwareupdate --install-rosetta --agree-to-license
|
|
fi
|
|
|
|
$PYTHON --version
|
|
$PYTHON -m venv venv
|
|
venv/bin/python -m pip install -U pip
|
|
venv/bin/python -m pip install -e ".[dev]"
|
|
venv/bin/python -m pip freeze
|
|
venv/bin/python --version
|