From 077bd9d761b84035e06decfccf864808104430bd Mon Sep 17 00:00:00 2001 From: Vikash Kothary Date: Sun, 6 Feb 2022 14:58:44 +0000 Subject: [PATCH] chore: Add poetry update script to update python dependencies to latest --- scripts/poetry-update.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/poetry-update.sh diff --git a/scripts/poetry-update.sh b/scripts/poetry-update.sh new file mode 100644 index 0000000..3027958 --- /dev/null +++ b/scripts/poetry-update.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# file: poetry-update.sh +# description: Update Python dependencies to latest. + +# POETRY_UPDATE_OPTS=--dry-run +# POETRY_UPDATE_ARGS=anki +poetry update "${POETRY_UPDATE_OPTS}" "${POETRY_UPDATE_ARGS}" + +# TODO: Run poetry export +# TODO: Create git branch and commit \ No newline at end of file