Skip to content

Commit

Permalink
requirements: Update to latest version
Browse files Browse the repository at this point in the history
Updates all of the dependent python modules to the latest version. Drop
Python 3.6 as it doesn't support the newer module version
  • Loading branch information
JoshuaWatt committed Jul 17, 2023
1 parent 2ded625 commit 5cbaf38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PyYAML==5.4.1
jsonschema==3.2.0
tabulate==0.8.9
tqdm==4.57.0
yamllint==1.26.0
PyYAML==6.0
jsonschema==4.17.3
tabulate==0.9.0
tqdm==4.65.0
yamllint==1.32.0
1 change: 1 addition & 0 deletions setup-venv
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ REV="$(git rev-parse HEAD):$(shasum "requirements.txt")"
if [ ! -e "venv/rev.txt" ] || [ "$(cat venv/rev.txt)" != "$REV" ]; then
python3 -m venv "venv"
. "venv/bin/activate"
pip install -U pip
pip install -r requirements.txt
echo "$REV" > "venv/rev.txt"
fi
Expand Down

0 comments on commit 5cbaf38

Please sign in to comment.