bidict/upgrade-dev-dependencies.sh

51 lines
1.6 KiB
Bash
Executable File

#!/usr/bin/env bash
#
# Copyright 2009-2022 Joshua Bronson. All rights reserved.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
set -euo pipefail
log() {
>&2 echo -e "$@"
}
main() {
pip install -e .[dev,lint]
if ! type pre-commit || ! type pip-compile; then
log "Error: pre-commit or pip-compile not found."
exit 1
fi
local -r gitbranch=$(git branch --show-current)
if [ "$gitbranch" = "deps" ] || [ "$gitbranch" = "dev" ]; then
log "Already on branch '$gitbranch'"
elif [ "$gitbranch" = "main" ]; then
git checkout -b deps main
else
log "On unsupported branch '$gitbranch'. Switch to 'main' and try again."
exit 1
fi
# Not adding --generate-hashes due to https://github.com/jazzband/pip-tools/issues/1326
local -r pip_compile="pip-compile pyproject.toml --upgrade --resolver=backtracking --allow-unsafe"
echo docs test lint dev | tr " " "\n" | xargs -P 0 -I{} ${pip_compile} --extra={} -o dev-deps/{}.txt
pip uninstall -y -r <(pip freeze)
ls dev-deps/*.txt | xargs -I{} pip install -r {}
pip install -e .[dev,lint]
pre-commit autoupdate
pre-commit clean
log "Dev dependencies upgraded."
log "Reminders:" \
"\n - Check release notes of upgraded packages for anything that affects bidict." \
"\n - Run tests via 'tox' or by pushing to the 'deps' branch to ensure everything still works." \
"\n - Check output for any new warnings, not just test failures."
}
main