Skip to content

Commit

Permalink
Simple script to bump requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
knatten committed Aug 9, 2024
1 parent d89e58b commit 0bb3285
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions scripts/bump.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

set -e

git checkout -b bump
pip-compile --upgrade requirements.in
pip install -r requirements.txt
python manage.py test
git add requirements.txt
git commit -m'Bump requirements'
git show
git push -u origin bump
git checkout master
git branch -D bump

0 comments on commit 0bb3285

Please sign in to comment.